blob: 16803ddc13c3cad9035ba04900a5471d2e08f182 [file] [log] [blame]
library test;
class A<T> {
final T x = throw '';
}
class B implements A<int> {
dynamic get x => 3;
}
foo() {}
main() {}