JavaTXCompilerInJavaTX/test/plugindevelopment/MartinTestCases/OL3.jav

10 lines
144 B
Plaintext
Raw Normal View History

2014-06-10 18:23:01 +00:00
class Test{
String main(){
return m(()->{return "Test";});
}
String m(p){
return p.apply();
}
void m(p){}
}