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