Skip to content

Commit ae5fc76

Browse files
committed
Test against accesses to uninitialized fields.
1 parent dcada26 commit ae5fc76

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// Copyright 2017 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+
// revisions: ast mir
12+
//[mir]compile-flags: -Z emit-end-regions -Z borrowck-mir
13+
14+
// Check that do not allow access to fields of uninitialized or moved
15+
// structs.
16+
17+
#[derive(Default)]
18+
struct Point {
19+
x: isize,
20+
y: isize,
21+
}
22+
23+
#[derive(Default)]
24+
struct Line {
25+
origin: Point,
26+
middle: Point,
27+
target: Point,
28+
}
29+
30+
impl Line { fn consume(self) { } }
31+
32+
fn main() {
33+
let mut a: Point;
34+
let _ = a.x + 1; //[ast]~ ERROR use of possibly uninitialized variable: `a.x`
35+
//[mir]~^ ERROR [E0381]
36+
//[mir]~| ERROR (Mir) [E0381]
37+
38+
let mut line1 = Line::default();
39+
let _moved = line1.origin;
40+
let _ = line1.origin.x + 1; //[ast]~ ERROR use of collaterally moved value: `line1.origin.x`
41+
//[mir]~^ [E0382]
42+
//[mir]~| (Mir) [E0381]
43+
44+
let mut line2 = Line::default();
45+
let _moved = (line2.origin, line2.middle);
46+
line2.consume(); //[ast]~ ERROR use of partially moved value: `line2` [E0382]
47+
//[mir]~^ [E0382]
48+
//[mir]~| (Mir) [E0381]
49+
}

0 commit comments

Comments
 (0)