blob: 8cae069fb517b0afe211b3d0b2f01736b9abe0de [file] [log] [blame]
Future<int> f() => Future.value(7);
// @dart=2.9
List<int> g() {
yield f();
}