blob: 05de17716b3d860643b7cca331d71c2607f84112 [file] [log] [blame]
class C<X> {
void m1({List<void Function(X)> xs = const []}) {}
void m2({List<void Function<Y extends List<X>>(Y)> xs = const []}) {}
}
void main() => C().m1();