mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
9 lines
270 B
Rust
9 lines
270 B
Rust
|
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;
|
||
|
}
|