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