JavaCompilerCore/test/bytecode/Binary2.jav
2015-10-29 15:16:19 +01:00

16 lines
174 B
Java

class OL {
Integer m(Integer x) { return x + x; }
Boolean m(Boolean x) {return x || x; }
}
class Binary2 {
main(x) {
ol;
ol = new OL();
return ol.m(x);
}
}