blob: 55397b8527665687a37ddc5daa563b910ea89b04 [file] [log] [blame]
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() {}