blob: 360af2e4ff0122f6411db816abc679f9d54d8eea [file] [log] [blame]
library test;
class A<T> {
final T w = throw '';
final T x = throw '';
}
class B implements A<int> {
get w => "hello";
get x => 3;
}
foo() {}
main() {}