blob: 405cd8a743840e4f8d659442851380bf408e9799 [file] [log] [blame]
class Test {
interface A<T> {
T foo();
}
class B implements A<Integer> {
public Integer foo() {
return null;
}
public void bar() {
Integer s = foo();
}
}
}