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 | 7 |
8 static testMain() { | 8 static testMain() { |
9 var a = 5; | 9 var a = 5; |
10 var x; | 10 var x; |
11 switch (a) { | 11 switch (a) { |
12 case 1: x = 1; continue L; // unresolved forward reference | 12 case 1: x = 1; continue L; // unresolved forward reference |
13 case 6: x = 2; break; | 13 case 6: x = 2; break; |
14 case 8: break; | 14 case 8: break; |
15 } | 15 } |
16 return a; | 16 return a; |
17 } | 17 } |
18 } | 18 } |
19 | 19 |
20 main() { | 20 main() { |
21 Switch4NegativeTest.testMain(); | 21 Switch4NegativeTest.testMain(); |
22 } | 22 } |
OLD | NEW |