about summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-assign-imm-local-with-init.rs
blob: 045ce5baa46a1aaac1adb2791179c532c108a766 (plain)
1
2
3
4
5
6
7
8
9
fn test() {
    let v: int = 1; //! NOTE prior assignment occurs here
    copy v;
    v = 2; //! ERROR re-assignment of immutable variable
    copy v;
}

fn main() {
}