rust/tests/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
344 B
Rust
Raw Normal View History

2014-02-15 23:00:38 +00:00
// verify that an error is raised when trying to move out of a
// borrowed path.
2015-01-08 02:53:58 +00:00
2014-02-15 23:00:38 +00:00
fn main() {
let a: Box<Box<_>> = Box::new(Box::new(2));
2014-02-15 23:00:38 +00:00
let b = &a;
let z = *a; //~ ERROR: cannot move out of `*a` because it is borrowed
b.use_ref();
2014-02-15 23:00:38 +00:00
}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }