blob: 9d4eae25386d66610ecef468dc81210a295c8f65 [file] [log] [blame]
// @dart = 2.9
library test;
class C {
T m<T>(T x) => x;
}
class D extends C {
m<S>(x) => x;
}
main() {}