| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // Discover unresolved case labels. | 4 // Discover unresolved case labels. |
| 5 | 5 |
| 6 class Switch4NegativeTest { | 6 class Switch4NegativeTest { |
| 7 | |
| 8 static testMain() { | 7 static testMain() { |
| 9 var a = 5; | 8 var a = 5; |
| 10 var x; | 9 var x; |
| 11 switch (a) { | 10 switch (a) { |
| 12 case 1: x = 1; continue L; // unresolved forward reference | 11 case 1: |
| 13 case 6: x = 2; break; | 12 x = 1; |
| 14 case 8: break; | 13 continue L; // unresolved forward reference |
| 14 case 6: |
| 15 x = 2; |
| 16 break; |
| 17 case 8: |
| 18 break; |
| 15 } | 19 } |
| 16 return a; | 20 return a; |
| 17 } | 21 } |
| 18 } | 22 } |
| 19 | 23 |
| 20 main() { | 24 main() { |
| 21 Switch4NegativeTest.testMain(); | 25 Switch4NegativeTest.testMain(); |
| 22 } | 26 } |
| OLD | NEW |