dart-sdk/tests/language/covariant/tear_off_type_test.dart
Robert Nystrom 5f655a8c27 Migrate language_2/covariant to NNBD.
Change-Id: Icb4eae77fab5257ea00ff948d3f775725398e6ab
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/142067
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Erik Ernst <eernst@google.com>
2020-04-07 01:05:28 +00:00

30 lines
898 B
Dart

// Copyright (c) 2017, 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.
import "package:expect/expect.dart";
typedef U F<T, U>(T x);
class C<T> {
T f(List<T> x) {
throw "uncalled";
}
}
F<List<num>, num> g(C<num> c) {
return c.f;
}
void main() {
var tearoff = g(new C<int>());
// Since C.f's x parameter is covariant, its type is changed to Object when
// determining the type of the tearoff. So the type of the tearoff should be
// `(Object) -> int`. (Not, for example, `(List<Object>) -> int` or
// `(List<Object>) -> Object`)
Expect.isTrue(tearoff is F<Object, int>);
// Because the function accepts any object, we can pass strings to it. This
// will not work in Dart 1.
Expect.isTrue(tearoff is F<String, int>);
}