blob: 16ed9ce98196c7ba6d7b2d566b3c5cbe859f69a0 [file] [log] [blame]
library test;
abstract class A {
Iterable<String> get foo;
}
class B implements A {
final foo = const [];
}
void main() {}