blob: 8fa0688462476464f4992beca12ee76b3716db5e [file] [log] [blame]
library test;
class B<T> {
T x = throw '';
T y = throw '';
}
abstract class C<T> implements B<num> {
var x = throw '';
get y;
set y(value);
}
abstract class D<T> implements B<T> {
var x = throw '';
get y;
set y(value);
}
main() {}