blob: 208f14c9a828d488c182c89d1c68b2698590ce09 [file] [log] [blame]
// @dart = 2.9
library test;
abstract class B {
void foo();
}
abstract class C extends B {
void bar();
}
void f<T extends B>(T a) {}
main() {}