JavaCompilerCore/test/plugindevelopment/OverloadingInsertTest.jav
2014-03-18 20:19:13 +01:00

20 lines
177 B
Java

class OverloadingInsertTest{
var;
overload(){
return this;
}
}
class Overloading2{
var2;
methode(){
return var2.overload();
}
overload(){
return this;
}
}