forked from JavaTX/JavaCompilerCore
15 lines
160 B
Plaintext
15 lines
160 B
Plaintext
|
import java.util.Vector;
|
||
|
|
||
|
public class Test<X>{
|
||
|
|
||
|
public X method(a){
|
||
|
return(a);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
public class Inst{
|
||
|
public inst(b){
|
||
|
return(b.method("HALLO"));
|
||
|
}
|
||
|
}
|