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

15 lines
165 B
Java
Executable File

interface Intf1{
}
interface Intf2{
}
class Gesucht implements Intf1, Intf2{
doSomething(){
}
}
class Test{
public test(x){
x.doSomething();
return(x);
}
}