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

Unified Diff: tests/language_2/type_variable_nested_test.dart

Issue 3008723002: Migrate block 163 to Dart 2.0. (Closed)
Patch Set: Merge fixups 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 | « tests/language_2/language_2_vm.status ('k') | tests/language_2/type_variable_promotion_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_2/type_variable_nested_test.dart
diff --git a/tests/language_strong/type_variable_nested_test.dart b/tests/language_2/type_variable_nested_test.dart
similarity index 93%
rename from tests/language_strong/type_variable_nested_test.dart
rename to tests/language_2/type_variable_nested_test.dart
index 9f6424fb7091270340ba3061ef149f39a66b707c..c47714490b5b5aaebe9f12a34d0330c4a288c390 100644
--- a/tests/language_strong/type_variable_nested_test.dart
+++ b/tests/language_2/type_variable_nested_test.dart
@@ -21,7 +21,7 @@ main() {
var a = new B();
Expect.isFalse(a._copy is List<int>);
Expect.isTrue(a._copy is List<A>);
- Expect.isTrue(a._copy is List<A<int>>);
+ Expect.isFalse(a._copy is List<A<int>>); //# 01: ok
a = new B<String>();
Expect.isFalse(a._copy is List<String>);
« no previous file with comments | « tests/language_2/language_2_vm.status ('k') | tests/language_2/type_variable_promotion_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698