JavaPatternMatching/bin/mycompiler/test/operators/TestOperatorObjects.jav

18 lines
170 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class A {
public java.lang.Integer m(a) {
return a;
}
}
public class TestOperatorObjects {
public static void main() {
b;
b=new A();
c;
c=b.m(3);
}
}