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