summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/let-binop.fixed
blob: 93f7f97b04fb77220b9175270bfe335b1da9ad37 (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;
}