blob: 22c5f69de3c19c3efc6cebb6d48d304a6bd935af [file] [log] [blame]
library test;
abstract class C extends B<int> implements I {}
abstract class I {
void f(int x, Object y);
}
class B<T> {
void f(T x, int y) {}
}
void main() {}