rust/src/test/compile-fail/liveness-assign-imm-local-with-init.rs

10 lines
168 B
Rust
Raw Normal View History

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() {
}