Chromium Code Reviews| Index: tests/compiler/dart2js_extra/label_test.dart |
| diff --git a/tests/compiler/dart2js_extra/label_test.dart b/tests/compiler/dart2js_extra/label_test.dart |
| index cced47e8dccd25f5ab5de6eea1b465c753d27390..1c4314c8dbfd0ba5074874181fbdb5bd48dcdf9f 100644 |
| --- a/tests/compiler/dart2js_extra/label_test.dart |
| +++ b/tests/compiler/dart2js_extra/label_test.dart |
| @@ -33,10 +33,10 @@ wrongContinueLabel() { |
| // Labels are not captured by closures. |
| noncaptureLabel() { |
| - foo: { /// 07: compile-time error |
| + foo: { // /// 07: compile-time error |
| (() { break foo; })(); /// 07: continued |
|
sra1
2017/03/21 01:43:46
//
Jacob
2017/03/21 02:25:34
Done.
|
| - break foo; /// 07: continued |
| - } /// 07: continued |
| + break foo; // /// 07: continued |
| + } // /// 07: continued |
| } |
| // Implicit break targets are not captured by closures. |