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