JavaTXCompilerInJavaTX/examples/hoti/Intf.jav

18 lines
200 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
/*interface Intf<E> {
E test2(E para1);
}
class Test{
public test(String x){
a;
return(a.test2(x));
}
}*/
interface Intf{
doSomething();
}
class Test{
public test(x){
x.doSomething();
}
}