rust/src/test/ui/parser/let-binop.rs

9 lines
270 B
Rust
Raw Normal View History

fn main() {
let a: i8 *= 1; //~ ERROR can't reassign to a uninitialized variable
let _ = a;
let b += 1; //~ ERROR can't reassign to a uninitialized variable
let _ = b;
let c *= 1; //~ ERROR can't reassign to a uninitialized variable
let _ = c;
}