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