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