2018-04-10 17:20:05 -05:00
|
|
|
#![feature(rustc_attrs)]
|
2014-03-21 20:05:05 -05:00
|
|
|
#![allow(dead_code)]
|
2018-04-10 17:20:05 -05:00
|
|
|
fn main() { #![rustc_error] // rust-lang/rust#49855
|
2014-01-21 23:33:37 -06:00
|
|
|
// Original borrow ends at end of function
|
2015-03-03 02:42:26 -06:00
|
|
|
let mut x = 1;
|
2014-01-21 23:33:37 -06:00
|
|
|
let y = &mut x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ mutable borrow occurs here
|
2014-01-21 23:33:37 -06:00
|
|
|
let z = &x; //~ ERROR cannot borrow
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ immutable borrow occurs here
|
2018-05-25 05:36:58 -05:00
|
|
|
z.use_ref();
|
|
|
|
y.use_mut();
|
2014-01-21 23:33:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
match true {
|
|
|
|
true => {
|
|
|
|
// Original borrow ends at end of match arm
|
2015-03-03 02:42:26 -06:00
|
|
|
let mut x = 1;
|
2014-01-21 23:33:37 -06:00
|
|
|
let y = &x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ immutable borrow occurs here
|
2014-01-21 23:33:37 -06:00
|
|
|
let z = &mut x; //~ ERROR cannot borrow
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ mutable borrow occurs here
|
2018-05-25 05:36:58 -05:00
|
|
|
z.use_mut();
|
|
|
|
y.use_ref();
|
2014-01-21 23:33:37 -06:00
|
|
|
}
|
|
|
|
false => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar() {
|
|
|
|
// Original borrow ends at end of closure
|
2015-02-01 11:44:15 -06:00
|
|
|
|| {
|
2015-03-03 02:42:26 -06:00
|
|
|
let mut x = 1;
|
2014-01-21 23:33:37 -06:00
|
|
|
let y = &mut x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ first mutable borrow occurs here
|
2014-01-21 23:33:37 -06:00
|
|
|
let z = &mut x; //~ ERROR cannot borrow
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ second mutable borrow occurs here
|
2018-05-25 05:36:58 -05:00
|
|
|
z.use_mut();
|
|
|
|
y.use_mut();
|
2014-01-21 23:33:37 -06:00
|
|
|
};
|
|
|
|
}
|
2018-05-25 05:36:58 -05:00
|
|
|
|
|
|
|
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
|
|
|
|
impl<T> Fake for T { }
|