2025-04-05 19:19:56 +03:00
|
|
|
//@ dont-require-annotations: NOTE
|
|
|
|
|
|
2014-03-21 18:05:05 -07:00
|
|
|
#![allow(dead_code)]
|
2025-03-30 00:39:55 +03:00
|
|
|
fn main() {
|
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;
|
2025-04-05 19:19:56 +03:00
|
|
|
//~^ NOTE mutable borrow occurs here
|
2014-01-22 00:33:37 -05:00
|
|
|
let z = &x; //~ ERROR cannot borrow
|
2025-04-05 19:19:56 +03:00
|
|
|
//~^ NOTE 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;
|
2025-04-05 19:19:56 +03:00
|
|
|
//~^ NOTE immutable borrow occurs here
|
2014-01-22 00:33:37 -05:00
|
|
|
let z = &mut x; //~ ERROR cannot borrow
|
2025-04-05 19:19:56 +03:00
|
|
|
//~^ NOTE 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;
|
2025-04-05 19:19:56 +03:00
|
|
|
//~^ NOTE first mutable borrow occurs here
|
2014-01-22 00:33:37 -05:00
|
|
|
let z = &mut x; //~ ERROR cannot borrow
|
2025-04-05 19:19:56 +03:00
|
|
|
//~^ NOTE 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 { }
|