blob: 1a50fa62011371e2d9235cf966229dab780f96c8 [file] [log] [blame]
// @dart = 2.9
library test;
class Bar<T extends Iterable<String>> {
void foo(T t) {}
}
class Baz<T, E extends Iterable<T>, S extends E> {
void foo(S t) {}
}
class Foo {
int bar = 42;
}
main() {}
test() {}