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