| Index: tests/corelib/src/ConstListLiteralTest.dart
|
| diff --git a/tests/corelib/src/ConstListLiteralTest.dart b/tests/corelib/src/ConstListLiteralTest.dart
|
| index c7ba4419f27bf22ef3d3e0cf9100387bb8a902ea..27891e95bc08801c1b63887afbab75c032f4eba0 100644
|
| --- a/tests/corelib/src/ConstListLiteralTest.dart
|
| +++ b/tests/corelib/src/ConstListLiteralTest.dart
|
| @@ -61,6 +61,10 @@ class ConstListLiteralTest {
|
| Expect.equals(4, list[0]);
|
| Expect.equals(2, list[1]);
|
| Expect.equals(3, list[2]);
|
| +
|
| + int x = 0;
|
| + list.forEach((e) { x += e; });
|
| + Expect.equals(9, x);
|
| }
|
| }
|
|
|
|
|