2017-05-10 12:23:51 +02:00

26 lines
224 B
Java

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); }
}
interface if1<A,B> {
}
class MyInteger {
}
class MyList {
}