JavaCompilerCore/test/bytecode/OL.jav

17 lines
156 B
Plaintext
Raw Normal View History

2016-08-25 17:52:06 +00:00
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);
}
}