blob: 4497bc5e234734bc43cb2a67e04ec27e2f80b7ee [file] [log] [blame]
// @dart = 2.9
library test;
abstract class C<T> implements B<num> {
get y;
set y(value);
var x;
}
abstract class D<T> implements B<T> {
get y;
set y(value);
var x;
}
class B<T> {
T x;
T y;
}
main() {}