| 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));
|
|
|