Files
2014-12-06 11:19:41 +03:00

9 lines
126 B
Java

// "Implement methods" "false"
class c {
void foo() {
new I<String>(new String(<caret>
}
}
interface I<T> {
foo(T t);
}