blob: 0a7a426340742e3a1f3cecd917f31b253876470b [file] [log] [blame]
bar() {}
class A<X> {}
class B<Y1, Y2 extends List<Y3>, Y3> extends A<Y1> {
Y1 get y1 => throw "B.y1";
Y2 get y2 => throw "B.y2";
Y3 get y3 => throw "B.y3";
}
foo<Z>(A<List<Z>> Function() f) {}
main() {}