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