OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
5 var sum = 0; | 7 var sum = 0; |
6 var foo = 0; | 8 var foo = 0; |
7 var bar = 1; | 9 var bar = 1; |
8 | 10 |
9 test() { | 11 test() { |
10 while (true) { | 12 while (true) { |
11 if (0 === foo) { | 13 if (0 === foo) { |
12 sum += 2; | 14 sum += 2; |
13 if (1 === bar) { | 15 if (1 === bar) { |
14 sum += 3; | 16 sum += 3; |
15 break; | 17 break; |
16 } | 18 } |
17 break; | 19 break; |
18 } | 20 } |
19 } | 21 } |
20 } | 22 } |
21 | 23 |
22 main() { | 24 main() { |
23 test(); | 25 test(); |
24 Expect.equals(5, sum); | 26 Expect.equals(5, sum); |
25 } | 27 } |
OLD | NEW |