JavaTXCompilerInJavaTX/test/strucTypes5/SolveTestRek.jav
2017-05-05 13:04:03 +02:00

22 lines
145 B
Java

class Main {
main () { return new A().mt( new MyInteger() ); }
}
class A{
mt(x) { return x; }
}
class MyInteger {
}
class MyList {
}