| Index: tests/corelib/list_iterators_test.dart
|
| diff --git a/tests/corelib/list_iterators_test.dart b/tests/corelib/list_iterators_test.dart
|
| index 66d2179f8451eba28a4b2051a18a8c63e48b60c5..c20e5ebe7d885be5cde542590f835a5b9e1c4959 100644
|
| --- a/tests/corelib/list_iterators_test.dart
|
| +++ b/tests/corelib/list_iterators_test.dart
|
| @@ -37,6 +37,9 @@ class ListIteratorsTest {
|
| g.removeLast();
|
| // The iterator keeps the last value.
|
| Expect.equals(3, it.current);
|
| + Expect.throws(it.moveNext, (e) => e is ConcurrentModificationError);
|
| + // No progress when throwing.
|
| + Expect.equals(3, it.current);
|
| }
|
| }
|
|
|
|
|