blob: 777dc0b8ec14c6ed64da278d1107b48e06940365 [file] [log] [blame]
class A {}
class B extends A {}
class C {
void set x(A value) {}
B get y => throw '';
}
class D extends C {
void set x(value) {}
get y => throw '';
}
class E extends D {
void set x(A value) {}
B get y => throw '';
}
class F extends D {
void set x(B value) {}
A get y => throw '';
}
main() {}