b7cc1e7ce7
Closes #32853 Change-Id: Ic759780799830dde655fafc7839c7d5387eb75d6 Reviewed-on: https://dart-review.googlesource.com/50943 Reviewed-by: Sigmund Cherem <sigmund@google.com> Commit-Queue: Sigmund Cherem <sigmund@google.com>
15 lines
434 B
Dart
15 lines
434 B
Dart
// 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.
|
|
|
|
// dart2jsOptions=--strong
|
|
|
|
// Regression test for issue 32853.
|
|
|
|
|
|
int foo<T extends Comparable<T>>(T a, T b) => a.compareTo(b);
|
|
|
|
main() {
|
|
int Function<T extends Comparable<T>>(T, T) f = foo;
|
|
print(f<num>(1, 2));
|
|
} |