Index: tests/language_strong/continue_test.dart |
diff --git a/tests/language_strong/continue_test.dart b/tests/language_strong/continue_test.dart |
index 576c4fe05ac18868465b166c2c1b20cd5ba97cd6..4587241ecc0aff2d539a267c16bf3cdea4db5f44 100644 |
--- a/tests/language_strong/continue_test.dart |
+++ b/tests/language_strong/continue_test.dart |
@@ -38,7 +38,8 @@ class ContinueTest { |
// Use a label to continue to the outer loop. |
i = 0; |
- L: while (i < 50) { |
+ L: |
+ while (i < 50) { |
i += 3; |
while (i < 30) { |
i += 2; |