JavaTXCompilerInJavaTX/test/strucTypes5/SolveTest.jav

22 lines
199 B
Plaintext
Raw Normal View History

2017-05-03 00:17:37 +00:00
class Main {
main () { return new A().mt( new MyInteger() , new MyInteger() , new MyInteger() ); }
}
class A{
mt(x,y,z) { return x.sub(y).add(z); }
}
class MyInteger {
}
2017-05-03 08:54:39 +00:00
class MyList {
2017-05-03 00:17:37 +00:00
2017-05-03 08:54:39 +00:00
}
2017-05-03 00:17:37 +00:00