JavaCompilerCore/test/plugindevelopment/MartinTestCases/OL.jav

17 lines
172 B
Plaintext
Raw Normal View History

2014-04-23 15:59:59 +00:00
class OL {
Integer m(Integer x) { return x + x; }
Boolean m(Boolean x) {return x || x; }
}
class Main {
main(x) {
ol;
ol = new OL();
return ol.m(x);
}
}