summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrowck-init-op-equal.rs
blob: 784eb8cf85b8a01c68639663d466508ab5e9a21e (plain)
1
2
3
4
5
6
7
8
fn test() {
    let v: isize;
    v += 1; //~ ERROR use of possibly-uninitialized variable: `v`
    v.clone();
}

fn main() {
}