JavaCompilerCore/app/resources/AllgemeinTest/Overloading_Generics.jav

21 lines
255 B
Plaintext
Raw Permalink Normal View History

2023-01-10 13:22:05 +00:00
import java.lang.Integer;
public class Overloading_Generics {
id1 (x) { return x; }
//Integer id (Integer x) { return x; }
}
class Overloading_Generics1 {
main(x) {
var olg = new Overloading_Generics();
return olg.id1(1);
}
}