blob: fabb24302b8dc107b4e63900300bc6c528d6ec7d [file] [log] [blame]
class Test {
interface A<T> {
void foo(T t);
}
class B implements A<Inte<caret>ger> {
Integer str;
public void foo(Integer s) {
str = s;
}
}
}