blob: f58b8aba1e178f759c103133c9216868fec487b5 [file] [log] [blame]
// @dart = 2.9
library test;
T f<T>(T x) => x;
class C {
T f<T>(T x) => x;
static T g<T>(T x) => x;
}
class D extends C {
void test() {}
}
void test() {}
main() {}