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