forked from JavaTX/JavaCompilerCore
22 lines
145 B
Plaintext
22 lines
145 B
Plaintext
|
|
||
|
|
||
|
|
||
|
class Main {
|
||
|
main () { return new A().mt( new MyInteger() ); }
|
||
|
}
|
||
|
|
||
|
|
||
|
class A{
|
||
|
mt(x) { return x; }
|
||
|
}
|
||
|
|
||
|
|
||
|
class MyInteger {
|
||
|
|
||
|
}
|
||
|
|
||
|
class MyList {
|
||
|
|
||
|
}
|
||
|
|