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