JavaCompilerCore/resources/bytecode/javFiles/Overloading.jav

18 lines
220 B
Plaintext
Raw Normal View History

import java.lang.String;
public class Overloading{
2024-03-14 12:50:56 +00:00
public test(x){
return x.methode();
}
2024-03-14 12:50:56 +00:00
public methode(){
return "Overloading";
}
}
public class Overloading2{
2024-03-14 12:50:56 +00:00
public methode(){
return "Overloading2";
}
}