| Index: tests/language/mixin_class_from_core_library_test.dart
|
| diff --git a/tests/language/mixin_class_from_core_library_test.dart b/tests/language/mixin_class_from_core_library_test.dart
|
| index f98f87ebadb9739bcf0a2c3efa9e89f514bd4dfc..300e0303e4e98afcadf194b120a897494f5e7bc5 100644
|
| --- a/tests/language/mixin_class_from_core_library_test.dart
|
| +++ b/tests/language/mixin_class_from_core_library_test.dart
|
| @@ -5,8 +5,8 @@ import 'dart:collection';
|
|
|
| class MyList extends Object with ListMixin {
|
| int length = 0;
|
| - operator[](index) => null;
|
| - void operator[]=(index, value) {}
|
| + operator [](index) => null;
|
| + void operator []=(index, value) {}
|
| }
|
|
|
| main() {
|
|
|