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