Skip to content

Commit 9e082ef

Browse files
committed
---
yaml --- r: 274098 b: refs/heads/stable c: 8877cca h: refs/heads/master
1 parent 2d6f94c commit 9e082ef

File tree

5 files changed

+74
-2
lines changed

5 files changed

+74
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: f9f6e3ad109a70428df197343c54f8a3f421a361
32+
refs/heads/stable: 8877cca190b4ddf3386092fa3bb84431b9d6cabd
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/src/test/compile-fail/loop-does-not-diverge.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ fn forever() -> ! {
1818
}
1919

2020
fn main() {
21-
if 1 == 2 { forever(); }
2221
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Copyright 2015 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+
fn test1() {
12+
// In this test the outer 'a loop may terminate without `x` getting initialised. Although the
13+
// `x = loop { ... }` statement is reached, the value itself ends up never being computed and
14+
// thus leaving `x` uninit.
15+
let x: i32;
16+
'a: loop {
17+
x = loop { break 'a };
18+
}
19+
println!("{:?}", x); //~ ERROR use of possibly uninitialized variable
20+
}
21+
22+
// test2 and test3 should not fail.
23+
fn test2() {
24+
// In this test the `'a` loop will never terminate thus making the use of `x` unreachable.
25+
let x: i32;
26+
'a: loop {
27+
x = loop { continue 'a };
28+
}
29+
println!("{:?}", x);
30+
}
31+
32+
fn test3() {
33+
let x: i32;
34+
// Similarly, the use of variable `x` is unreachable.
35+
'a: loop {
36+
x = loop { return };
37+
}
38+
println!("{:?}", x);
39+
}
40+
41+
fn main() {
42+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2015 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+
fn forever2() -> i32 {
12+
let x: i32 = loop { break }; //~ ERROR mismatched types
13+
x
14+
}
15+
16+
fn main() {}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Copyright 2015 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+
fn forever2() -> ! { //~ ERROR computation may converge in a function marked as diverging
12+
loop { break }
13+
}
14+
15+
fn main() {}

0 commit comments

Comments
 (0)