JavaPatternMatching/test/bytecode/Binary2.jav

8 lines
104 B
Plaintext
Raw Normal View History

2015-10-30 15:37:12 +00:00
class Binary2 {
2015-10-29 14:16:19 +00:00
Integer m(Integer x) { return x + x; }
Boolean m(Boolean x) {return x || x; }
}