JavaCompilerCore/test/bytecode/OL.jav

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);
}
}