blob: ae399db22ee4e558cc1f6814b52aee2a6ddd35ca [file] [log] [blame]
import 'dart:core' as core;
import 'b.dart' deferred as b;
void f() {
[].removeWhere((o) => b.isB(o)); //OK
[].forEach((e) { core.print(e); }); //LINT
}