JavaPatternMatching/test/bytecode/Binary2.jav
2015-10-30 16:37:12 +01:00

8 lines
104 B
Java

class Binary2 {
Integer m(Integer x) { return x + x; }
Boolean m(Boolean x) {return x || x; }
}