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