| Index: tests/language/assign_static_type_test.dart
|
| diff --git a/tests/language/assign_static_type_test.dart b/tests/language/assign_static_type_test.dart
|
| index 0d1c30785a81bbb7f7c1ca71f0bddc1b266fb06e..c67379f9158b418e1c6ea9ff2aceff203aa1d209 100644
|
| --- a/tests/language/assign_static_type_test.dart
|
| +++ b/tests/language/assign_static_type_test.dart
|
| @@ -8,7 +8,7 @@
|
| int a = "String"; /// 01: static type warning, dynamic type error
|
|
|
| class A {
|
| - static const int c = "String"; /// 02: static type warning, dynamic type error
|
| + static const int c = "String"; /// 02: static type warning, checked mode compile-time error
|
| final int d = "String"; /// 03: static type warning, dynamic type error
|
| int e = "String"; /// 04: static type warning, dynamic type error
|
| A() {
|
|
|