summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-init-op-equal.rs
blob: 89b07847e73dd9d88846fbc5e75d9518bc949e3a (plain)
1
2
3
4
5
6
7
8
fn test() {
    let v: int;
    v += 1; //~ ERROR use of possibly uninitialized variable: `v`
    copy v;
}

fn main() {
}