blob: e27dd81bc7080a8f7c5e3943065fa7709c99a28e [file] [log] [blame]
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() {}