blob: 4ab415cc658dba020f58b94a3fcc2e39c7f78bdf [file] [log] [blame]
library test;
T f<T>() => throw '';
class C {
C() : x = f();
final int x;
}
main() {}