rust/tests/ui/borrowck/borrowck-lend-flow.rs

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

40 lines
1015 B
Rust
Raw Normal View History

// Note: the borrowck analysis is currently flow-insensitive.
// Therefore, some of these errors are marked as spurious and could be
// corrected by a simple change to the analysis. The others are
// either genuine or would require more advanced changes. The latter
// cases are noted.
fn borrow(_v: &isize) {}
fn borrow_mut(_v: &mut isize) {}
fn cond() -> bool { panic!() }
2015-01-03 15:45:00 +00:00
fn for_func<F>(_f: F) where F: FnOnce() -> bool { panic!() }
fn produce<T>() -> T { panic!(); }
fn inc(v: &mut Box<isize>) {
*v = Box::new(**v + 1);
}
2013-03-15 19:24:24 +00:00
fn pre_freeze() {
// In this instance, the freeze starts before the mut borrow.
let mut v: Box<_> = Box::new(3);
2013-03-15 19:24:24 +00:00
let _w = &v;
borrow_mut(&mut *v); //~ ERROR cannot borrow
_w.use_ref();
}
2013-03-15 19:24:24 +00:00
fn post_freeze() {
// In this instance, the const alias starts after the borrow.
let mut v: Box<_> = Box::new(3);
borrow_mut(&mut *v);
2013-03-15 19:24:24 +00:00
let _w = &v;
}
fn main() {}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }