| Index: tests/language_strong/load_indexed_constant_test.dart
|
| diff --git a/tests/language_strong/load_indexed_constant_test.dart b/tests/language_strong/load_indexed_constant_test.dart
|
| index cf45b18250affe1454dde07e86f18ae026193878..6b141e9eb9b17ae5eaa8b733bdc38bd6ce9dc3bb 100644
|
| --- a/tests/language_strong/load_indexed_constant_test.dart
|
| +++ b/tests/language_strong/load_indexed_constant_test.dart
|
| @@ -6,7 +6,6 @@
|
|
|
| import "package:expect/expect.dart";
|
|
|
| -
|
| main() {
|
| Expect.equals(101, stringIndexedLoad());
|
| Expect.equals(102, arrayIndexedLoad());
|
| @@ -19,4 +18,4 @@ main() {
|
| }
|
|
|
| stringIndexedLoad() => ("Hello").codeUnitAt(1);
|
| -arrayIndexedLoad() => (const [101, 102, 103])[1];
|
| +arrayIndexedLoad() => (const [101, 102, 103])[1];
|
|
|