blob: b32cd47a685303a4ba2ef0c86c08a82868396328 [file] [log] [blame]
Future<int> f() => Future.value(7);
List<int> g() {
yield f();
}