blob: 505dfb34c4682536ebd4fce40b733bc27f14d1f6 [file] [log] [blame]
library test;
import 'dart:async';
typedef int IntToInt(int i);
IntToInt a() {}
Future<IntToInt> b() async {}
Iterable<IntToInt> c() sync* {}
Iterable<IntToInt> d() sync* {}
Stream<IntToInt> e() async* {}
Stream<IntToInt> f() async* {}
main() {}