blob: 3ea248afd65e6013d856788f9c6f50d9fc78364b [file] [log] [blame]
// @dart = 2.14
T id<T>(T t) => t;
T Function<T>(T) alias = id;
class Class {
T call<T>(T t) => t;
}
method(int Function(int) f) {}
test() {}
main() {}