blob: 241417f9d56861c0ace9c873418948d38bd1dda7 [file] [log] [blame]
abstract class A<X> {
void foo({Iterable<X>? x});
}
class B<Y> implements A<Y> {
void foo({x}) {}
}
main() {}