22 lines
196 B
Plaintext
Raw Normal View History

2013-10-18 13:33:46 +02:00
class OverloadingTest{
var;
public Object clone(){
return this;
}
public testMethode(){
return var.clone();
}
}
class OverloadingTest2{
public Object clone(){
return this;
}
}