blob: 960fc60868d5946c0b84f0dd9ae391edcc086cbd [file] [log] [blame]
import 'dart:async';
String stringFunction(String s) => s;
bool boolFunction(bool b) => b;
dynamic dynamicFunction(dynamic d) => d;
expect(expected, actual) {}
int intFunction(int i) => i;
main() {}
test<T>(o) {}
typedef FunctionType = void Function();
typedef GenericFunctionType<T> = T Function(T);
void function() {}
void multiArgFunction(int i, String s) {}