]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-uninit-in-assignop.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / borrowck-uninit-in-assignop.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 // Tests that the use of uninitialized variable in assignment operator
12 // expression is detected.
13
14 pub fn main() {
15     let x: isize;
16     x += 1; //~ ERROR use of possibly uninitialized variable: `x`
17
18     let x: isize;
19     x -= 1; //~ ERROR use of possibly uninitialized variable: `x`
20
21     let x: isize;
22     x *= 1; //~ ERROR use of possibly uninitialized variable: `x`
23
24     let x: isize;
25     x /= 1; //~ ERROR use of possibly uninitialized variable: `x`
26
27     let x: isize;
28     x %= 1; //~ ERROR use of possibly uninitialized variable: `x`
29
30     let x: isize;
31     x ^= 1; //~ ERROR use of possibly uninitialized variable: `x`
32
33     let x: isize;
34     x &= 1; //~ ERROR use of possibly uninitialized variable: `x`
35
36     let x: isize;
37     x |= 1; //~ ERROR use of possibly uninitialized variable: `x`
38
39     let x: isize;
40     x <<= 1;    //~ ERROR use of possibly uninitialized variable: `x`
41
42     let x: isize;
43     x >>= 1;    //~ ERROR use of possibly uninitialized variable: `x`
44 }