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