blob: 69ed62342ad1490320606d7ef58789d8a9f325e9 [file] [log] [blame]
import 'dart:async';
FutureOr<Iterable<int>> f() sync* {}
FutureOr<Stream<int>> g() async* {}
main() async {}
expectThrows(f) {}
expectAsyncThrows(f) async {}