JavaCompilerCore/test/bytecode/OL.jav
2016-08-25 19:52:06 +02:00

17 lines
156 B
Java
Executable File

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