15 lines
165 B
Java
Executable File
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);
|
|
}
|
|
} |