| Index: tests/language_strong/optimized_string_charat_test.dart
|
| diff --git a/tests/language_strong/optimized_string_charat_test.dart b/tests/language_strong/optimized_string_charat_test.dart
|
| index b7ca22f7ce5846de1f8377ec126c88e1d1af536e..c35a25bc6dab1a318b6ca4a2c93e5035fc742194 100644
|
| --- a/tests/language_strong/optimized_string_charat_test.dart
|
| +++ b/tests/language_strong/optimized_string_charat_test.dart
|
| @@ -19,7 +19,6 @@ test_const_str(i) {
|
| return "abc"[i];
|
| }
|
|
|
| -
|
| test_const_index(s) {
|
| return s[0];
|
| }
|
| @@ -63,6 +62,4 @@ main() {
|
| Expect.equals(new String.fromCharCodes([456]), test_charat(c, 1));
|
| Expect.equals(new String.fromCharCodes([789]), test_charat(c, 2));
|
| Expect.throws(() => test_charat(c, 3));
|
| -
|
| -
|
| }
|
|
|