JavaCompilerCore/test/bytecode/javFiles/OL.jav

9 lines
133 B
Plaintext
Raw Normal View History

2018-04-11 11:55:32 +00:00
import java.lang.Integer;
import java.lang.Boolean;
class OL {
m(Integer x) { return x + x; }
m(Boolean x) {return x || x; }
}