blob: 9423d0e08e516083888ebca0337db7dc0bc72686 [file] [log] [blame]
// "Implement Methods" "true"
class c {
void foo() {
new I<String>()<caret>
}
}
interface I<T> {
foo(T t);
}