JavaTXCompilerInJavaTX/test/strucTypes5/SolveTestRek.jav

22 lines
145 B
Plaintext
Raw Normal View History

2017-05-05 11:04:03 +00:00
class Main {
main () { return new A().mt( new MyInteger() ); }
}
class A{
mt(x) { return x; }
}
class MyInteger {
}
class MyList {
}