blob: bfdc465a68eb59249dbe1f85887c627bd17effc3 [file] [log] [blame]
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() {}