blob: 63624e529cfb63345b00fe60363aa4e9a985d12f [file] [log] [blame]
library test;
T f<T>() => throw '';
class C implements B {
final x;
C() : x = f();
}
abstract class B {
int get x;
}
main() {}