blob: 9ddab960a3923fb902c0e3016f48ed393f3c5e11 [file] [log] [blame]
// @dart = 2.9
library test;
class A<T> {
T x;
}
class B<E> extends A<E> {
E y;
get x => y;
}
foo() {}
main() {}