blob: 48c35b5207cf3597313290ee6c5fbc7e3df525da [file] [log] [blame]
// @dart = 2.9
library test;
T f<T>() => null;
class C {
C() : x = f();
final int x;
}
main() {}