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