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