| Index: tests/language/inst_field_initializer1_negative_test.dart
|
| diff --git a/tests/language/inst_field_initializer1_negative_test.dart b/tests/language/inst_field_initializer1_negative_test.dart
|
| index 44fcca13a110b64aaf788a5e9f9cffd311aec8ff..1c56eb0fa8f98251115fbced235f6088ccaaa0af 100644
|
| --- a/tests/language/inst_field_initializer1_negative_test.dart
|
| +++ b/tests/language/inst_field_initializer1_negative_test.dart
|
| @@ -7,7 +7,7 @@
|
| class A {
|
| A() {}
|
| int x = 5;
|
| - int arr = new List(x); // Illegal access to 'this'.
|
| + int arr = new List.fixedLength(x); // Illegal access to 'this'.
|
| // Also not a compile const expression.
|
| }
|
|
|
|
|