blob: bf8a3046a185882963eb7db927c1293b89ffc7e3 [file] [log] [blame]
// @dart = 2.9
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() {}