JavaCompilerCore/examples/hoti/GenericsTest.jav

15 lines
160 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
import java.util.Vector;
public class Test<X>{
public X method(a){
return(a);
}
}
public class Inst{
public inst(b){
return(b.method("HALLO"));
}
}