File tree Expand file tree Collapse file tree 5 files changed +74
-2
lines changed
branches/stable/src/test/compile-fail Expand file tree Collapse file tree 5 files changed +74
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
29
29
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
30
30
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
31
31
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32
- refs/heads/stable: f9f6e3ad109a70428df197343c54f8a3f421a361
32
+ refs/heads/stable: 8877cca190b4ddf3386092fa3bb84431b9d6cabd
33
33
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
34
34
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
35
35
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e
Original file line number Diff line number Diff line change @@ -18,5 +18,4 @@ fn forever() -> ! {
18
18
}
19
19
20
20
fn main ( ) {
21
- if 1 == 2 { forever ( ) ; }
22
21
}
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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 ( ) { }
Original file line number Diff line number Diff line change
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 ( ) { }
You can’t perform that action at this time.
0 commit comments