summaryrefslogtreecommitdiffstats
path: root/src/test/ui/liveness/liveness-assign/liveness-assign-imm-local-in-op-eq.rs
blob: 1752d969086e897e6c0a41cf0c2f24ac84cc4558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fn test() {
    let v: isize;
    //~^ HELP consider making this binding mutable
    //~| SUGGESTION mut v
    v = 2;  //~ NOTE first assignment
    v += 1; //~ ERROR cannot assign twice to immutable variable `v`
            //~| NOTE cannot assign twice to immutable
    v.clone();
}

fn main() {
}