blob: 5a2c28377185a42ad25a12ffbd482943202517c2 [file] [log] [blame]
library test;
T f<T>() => throw '';
class A {}
A aTopLevel = throw '';
void set aTopLevelSetter(A value) {}
class C {
A aField = throw '';
void set aSetter(A value) {}
void test() {}
}
main() {}