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