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