]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/for-loop-while/loop-no-reinit-needed-post-bot.rs
Various minor/cosmetic improvements to code
[rust.git] / src / test / run-pass / for-loop-while / loop-no-reinit-needed-post-bot.rs
1 // Copyright 2012-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 // run-pass
12 // pretty-expanded FIXME #23616
13
14 struct S;
15 // Ensure S is moved, not copied, on assignment.
16 impl Drop for S { fn drop(&mut self) { } }
17
18 // user-defined function "returning" bottom (i.e., no return at all).
19 fn my_panic() -> ! { loop {} }
20
21 pub fn step(f: bool) {
22     let mut g = S;
23     let mut i = 0;
24     loop
25     {
26         if i > 10 { break; } else { i += 1; }
27
28         let _g = g;
29
30         if f {
31             // re-initialize g, but only before restarting loop.
32             g = S;
33             continue;
34         }
35
36         my_panic();
37
38         // we never get here, so we do not need to re-initialize g.
39     }
40 }
41
42 pub fn main() {
43     step(true);
44 }