blob: 1684bf578fdab8b4ee6ecb9d4c1260a86abae244 [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() {}