]> git.proxmox.com Git - rustc.git/blame - src/test/run-make/graphviz-flowgraph/f25.rs
Imported Upstream version 1.0.0-alpha.2
[rustc.git] / src / test / run-make / graphviz-flowgraph / f25.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11#[allow(unreachable_code)]
12pub fn expr_while_25() {
85aaf69f
SL
13 let mut x = 25;
14 let mut y = 25;
15 let mut z = 25;
1a4d82fc
JJ
16
17 'a: loop {
85aaf69f
SL
18 if x == 0 { break; "unreachable"; }
19 x -= 1;
1a4d82fc
JJ
20
21 'a: loop {
85aaf69f
SL
22 if y == 0 { break; "unreachable"; }
23 y -= 1;
1a4d82fc
JJ
24
25 'a: loop {
85aaf69f
SL
26 if z == 0 { break; "unreachable"; }
27 z -= 1;
1a4d82fc
JJ
28 }
29
85aaf69f 30 if x > 10 {
1a4d82fc
JJ
31 continue 'a;
32 "unreachable";
33 }
34 }
35 }
36}