blob: e5ed5910c2c1bd95a30bd8d2556c48fc3e1328e1 [file] [log] [blame]
class A<T> {
T bar(){}
}
class B extends A<Object> {
void barInner(Object s) {
}
void foo() {
barInner(bar());
}
}