blob: 01a6bf49322efd0e09251c06a941287bcbf26c11 [file] [log] [blame]
class Test {
interface A<T> {
void foo(T t);
}
class B implements A<String> {
String str;
public void foo(String s) {
str = s;
}
}
}