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