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