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