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