blob: 4880a9f75a35ec70491645a327f8aac980f026c7 [file] [log] [blame]
// @dart = 2.9
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);