blob: b287995436616fd70a7022b2a30a8f97e37b1969 [file] [log] [blame]
class Test <T> {
}
class I extends Test<String>{
void foo(String t) {
}
}
class Usage {
void bar() {
new Test<Integer>().foo(1);
}
}