blob: 06fb6ed5573251d60d42cce5742c85975f953714 [file] [log] [blame]
// @dart = 2.9
library test;
class A<T> {
final T w = null;
final T x = null;
}
class B implements A<int> {
get w => "hello";
get x => 3;
}
foo() {}
main() {}