blob: 041aa1b24dd959139bc012217dee2a5dcae878e0 [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);