Index: tests/language_strong/super_operator_index_test.dart |
diff --git a/tests/language_strong/super_operator_index_test.dart b/tests/language_strong/super_operator_index_test.dart |
index 10b7a36c41bb088c606ca381df6d3c3607baf198..2b27013a27b855314bd25bc59406513056711510 100644 |
--- a/tests/language_strong/super_operator_index_test.dart |
+++ b/tests/language_strong/super_operator_index_test.dart |
@@ -5,7 +5,7 @@ |
// Test that we emit warnings for unresolved indexing operations on super. |
class A { |
- operator[]=(a, b) {} |
+ operator []=(a, b) {} |
} |
class B extends A { |
@@ -17,7 +17,7 @@ class B extends A { |
} |
class C { |
- operator[](a) {} |
+ operator [](a) {} |
} |
class D extends C { |