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 // Check that 'continue' to switch statement is illegal. | 4 // Check that 'continue' to switch statement is illegal. |
5 | 5 |
6 class Switch3NegativeTest { | 6 class Switch3NegativeTest { |
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; break; | 12 case 1: x = 1; break; |
13 case 6: x = 2; continue; // illegal jump target | 13 case 6: x = 2; continue; // illegal jump target |
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 Switch3NegativeTest.testMain(); | 21 Switch3NegativeTest.testMain(); |
22 } | 22 } |
OLD | NEW |