JavaCompilerCore/test/plugindevelopment/OverloadingInsertTest.jav

20 lines
177 B
Plaintext
Raw Normal View History

2014-03-18 19:19:13 +00:00
class OverloadingInsertTest{
var;
overload(){
return this;
}
}
class Overloading2{
var2;
methode(){
return var2.overload();
}
overload(){
return this;
}
}