blob: 421d6bd5bdbb8d70672cc12beb9020178446e4fd [file] [log] [blame]
// Copyright (c) 2018, 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.
T method1a<T>() => null;
T method1b<T>() => null;
class Class {
T method2a<T>() => null;
T method2b<T>() => null;
}
main() {
method1a();
T Function<T>() f1 = method1b;
Class c = new Class();
c.method2a();
T Function<T>() f2 = c.method2b;
print(f1.runtimeType == f2.runtimeType);
}