blob: 2adbceae5d3c439a4157d0587ea5ebb7a826adab (
plain)
1
2
3
4
5
6
7
8
9
10
|
// run-rustfix
fn main() {
let a: i8 *= 1; //~ ERROR can't reassign to an uninitialized variable
let _ = a;
let b += 1; //~ ERROR can't reassign to an uninitialized variable
let _ = b;
let c *= 1; //~ ERROR can't reassign to an uninitialized variable
let _ = c;
}
|