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