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

Unified Diff: test/codegen/language/compile_time_constant8_test.dart

Issue 1757343002: upgrade to latest analyzer (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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 | « test/codegen/language/cascade2_test.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/language/compile_time_constant8_test.dart
diff --git a/test/codegen/language/compile_time_constant8_test.dart b/test/codegen/language/compile_time_constant8_test.dart
index a291f821bf9182a3edc356543320ecc2df063984..a3717b9ed41a17ffc43f91ecc75c4833ec49e7c6 100644
--- a/test/codegen/language/compile_time_constant8_test.dart
+++ b/test/codegen/language/compile_time_constant8_test.dart
@@ -13,7 +13,8 @@ const a = const A<int>();
const b = const A<double>();
const list1 = const<int> [1, 2];
-const list2 = const [1, 2];
+// Strong mode change: explicit <dynamic>
+const list2 = const<dynamic> [1, 2];
main() {
Expect.isFalse(identical(a, b));
Expect.isFalse(identical(list1, list2));
« no previous file with comments | « test/codegen/language/cascade2_test.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698