| Index: tests/language/compile_time_constant_test.dart
|
| diff --git a/tests/language/compile_time_constant_test.dart b/tests/language/compile_time_constant_test.dart
|
| index f354e10c8bc0c57a58bf72695563132ad92e0ae9..ca433394c4ad3d75b7d67b4441a5cfee55596d64 100644
|
| --- a/tests/language/compile_time_constant_test.dart
|
| +++ b/tests/language/compile_time_constant_test.dart
|
| @@ -7,9 +7,9 @@ class Bad {
|
| static int bar
|
| = foo /// 01: compile-time error
|
| ;
|
| - static int toto
|
| - = bar /// 02: compile-time error
|
| - ;
|
| + static const int toto =
|
| + bar /// 02: compile-time error
|
| + -3;
|
| }
|
|
|
| void use(x) {}
|
|
|