Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(728)

Unified Diff: tests/language_2/covariant_tear_off_type_test.dart

Issue 3012443003: Add a test of the runtime type of a tearoff that uses a covariant generic parameter. (Closed)
Patch Set: Address code review comments Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/language_2/language_2_dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_2/covariant_tear_off_type_test.dart
diff --git a/tests/language_2/covariant_tear_off_type_test.dart b/tests/language_2/covariant_tear_off_type_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c3a848c1f0fc13094b4c4773c74e372c2dc80cc1
--- /dev/null
+++ b/tests/language_2/covariant_tear_off_type_test.dart
@@ -0,0 +1,27 @@
+// 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) {}
+}
+
+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>);
+}
« no previous file with comments | « no previous file | tests/language_2/language_2_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698