5 lines
89 B
Java
5 lines
89 B
Java
interface Simple {
|
|
default String test(String s) {
|
|
return s + "Fail";
|
|
}
|
|
} |