rust/src/test/ui/borrowck/borrowck-loan-blocks-move.rs
2018-12-25 21:08:33 -07:00

20 lines
297 B
Rust

#![feature(box_syntax)]
fn take(_v: Box<isize>) {
}
fn box_imm() {
let v = box 3;
let w = &v;
take(v); //~ ERROR cannot move out of `v` because it is borrowed
w.use_ref();
}
fn main() {
}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }