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