blob: 7459810156e16be5bb8c619617621c3a18ed5e86 [file] [log] [blame]
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @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() {
Class c = new Class();
int Function(int) f = alias;
int Function(int) g;
g = alias;
int Function(int) h = c;
g = c;
method(alias);
}
main() {}