JavaTXCompilerInJavaTX/examples/hoti/Intf.jav
2013-10-18 13:33:46 +02:00

18 lines
200 B
Java
Executable File

/*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();
}
}