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