Index: tests/language/bailout4_test.dart |
diff --git a/tests/language/bailout4_test.dart b/tests/language/bailout4_test.dart |
index 54c2f3f8ca7a3fb7f3f4f7b9f4544973db75d541..2985e96d95cbfc2bb82a73e856d209d5a96b43ad 100644 |
--- a/tests/language/bailout4_test.dart |
+++ b/tests/language/bailout4_test.dart |
@@ -8,7 +8,7 @@ import "package:expect/expect.dart"; |
// of nested loops. |
class A { |
- operator[] (index) => 42; |
+ operator [](index) => 42; |
} |
var a = new A(); |