forked from JavaTX/JavaCompilerCore
18 lines
170 B
Plaintext
18 lines
170 B
Plaintext
|
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);
|
||
|
}
|
||
|
|
||
|
}
|