| Index: tests/language_strong/const_constructor_nonconst_field_test.dart
|
| diff --git a/tests/language_strong/const_constructor_nonconst_field_test.dart b/tests/language_strong/const_constructor_nonconst_field_test.dart
|
| index 9571a408a13a3cdf66626af502d090e26e512d3c..6dab9fd13897b1fd02cbea0afec6bccf37490ecd 100644
|
| --- a/tests/language_strong/const_constructor_nonconst_field_test.dart
|
| +++ b/tests/language_strong/const_constructor_nonconst_field_test.dart
|
| @@ -5,7 +5,7 @@
|
| import "package:expect/expect.dart";
|
|
|
| class A {
|
| - final int i = f(); /// 01: compile-time error
|
| + final int i = f(); //# 01: compile-time error
|
| final int j = 1;
|
| const A();
|
| }
|
|
|