blob: f36da3f3a8b5edcb2c6fd6c203168cd8dbc6452a [file] [log] [blame]
library test;
class A<T> {
T x = throw '';
}
class B<E> extends A<E> {
E y = throw '';
get x => y;
}
foo() {}
main() {}