blob: 85572a1ac3f5f33a4355bd7dc898d24318aa4087 [file] [log] [blame]
// @dart = 2.9
library test;
T f<T>() => null;
class C<T> {
const C();
}
void test(C<int> x) {}
main() {}