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 default clause must be last case. | 4 // Check that default clause must be last case. |
5 | 5 |
6 class Switch1NegativeTest { | 6 class Switch1NegativeTest { |
7 | 7 |
8 static testMain() { | 8 static testMain() { |
9 var a = 5; | 9 var a = 5; |
10 var x; | 10 var x; |
11 S: switch (a) { | 11 S: switch (a) { |
12 case 1: x = 1; break; | 12 case 1: x = 1; break; |
13 case 6: x = 2; break S; | 13 case 6: x = 2; break S; |
14 default: | 14 default: |
15 case 8: break; | 15 case 8: break; |
16 } | 16 } |
17 return a; | 17 return a; |
18 } | 18 } |
19 } | 19 } |
20 | 20 |
21 main() { | 21 main() { |
22 Switch1NegativeTest.testMain(); | 22 Switch1NegativeTest.testMain(); |
23 } | 23 } |
OLD | NEW |