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