JavaPatternMatching/test/bytecode/Binary2.jav

16 lines
174 B
Plaintext
Raw Normal View History

2015-10-29 14:16:19 +00:00
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);
}
}