| Index: tests/language/compile_time_constant_h_test.dart
|
| diff --git a/tests/language/compile_time_constant_h_test.dart b/tests/language/compile_time_constant_h_test.dart
|
| index ff6ba0f97f38440b9896eb1f854a43c9f5e84fec..b9094c2acc0d1e6d7e805e3755e1cdbd77c8f902 100644
|
| --- a/tests/language/compile_time_constant_h_test.dart
|
| +++ b/tests/language/compile_time_constant_h_test.dart
|
| @@ -11,7 +11,7 @@ interface B default A {
|
| const B(x);
|
| }
|
|
|
| -final b1 = const B(499);
|
| +const b1 = const B(499);
|
|
|
| main() {
|
| Expect.equals(499, b1.x);
|
|
|