blob: 0a6e35d1b777550e4638429b3a2e2315a1055af7 [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() {}