blob: bfb0dd4301dd1a6a6443498ae65dbee6d63621f4 [file] [log] [blame]
// Tests that the use of uninitialized variable in assignment operator
// expression is detected.
pub fn main() {
let x: isize;
x += 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x -= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x *= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x /= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x %= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x ^= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x &= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x |= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x <<= 1; //~ ERROR use of possibly uninitialized variable: `x`
let x: isize;
x >>= 1; //~ ERROR use of possibly uninitialized variable: `x`
}