blob: 663e5c5b6ddceb4a329ba071d560535571400a69 [file] [log] [blame]
// Copyright (c) 2019, 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.9
import "package:expect/expect.dart";
void foo<T extends num>(T x) {}
void bar<T extends num>(num x) {}
typedef F = Function<T extends num>(T x);
void main() {
Expect.isTrue(foo is F);
Expect.isTrue(bar is F);
}