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..8f18981a0fc7bfd4202191a5fcde2d0317520123 100644 |
--- a/tests/language/inst_field_initializer1_negative_test.dart |
+++ b/tests/language/inst_field_initializer1_negative_test.dart |
@@ -3,12 +3,11 @@ |
// BSD-style license that can be found in the LICENSE file. |
// Catch illegal access to 'this' in initalized instance fields. |
- |
class A { |
A() {} |
int x = 5; |
- int arr = new List(x); // Illegal access to 'this'. |
- // Also not a compile const expression. |
+ int arr = new List(x); // Illegal access to 'this'. |
+ // Also not a compile const expression. |
} |
void main() { |