blob: bc21bced987e65da3f55c02fa4256ef6c08fe2f8 [file] [log] [blame]
// @dart = 2.9
List<B> xs;
List<List<B>> xss;
class A {}
class B extends A {}
class Class<T extends A> {
void method1a(T t) {}
void method1b(T t) {}
void method2a(T t) {}
void method2b(T t) {}
}
void errors() {}
void main() {}
void throws(void Function() f) {}