blob: c2a9e1e6a36bf744dabe9a4a43ce3a40bfd57bfd [file] [log] [blame]
// @dart = 2.9
library test;
class B<T> {
T x;
}
class C extends B<num> {}
void main() {}