blob: 48638bab058df3e6bcfa9c56131b2c9da390eacb [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() {}