blob: ee47caa114647f5e90fca8e3f63cfc1e324996e7 [file] [log] [blame]
class Test {
D f;
void foo(D c) {
f = c;
}
}
class B extends Test {
void foo(D c) {
}
}
class C {}
class D extends C{}