2016-08-23 13:35:59 +00:00
|
|
|
fn inside_closure(x: &mut i32) {
|
|
|
|
}
|
|
|
|
|
2017-12-07 21:15:11 +00:00
|
|
|
fn outside_closure_1(x: &mut i32) {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn outside_closure_2(x: &i32) {
|
2016-08-23 13:35:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn foo(a: &mut i32) {
|
|
|
|
let bar = || {
|
|
|
|
inside_closure(a)
|
|
|
|
};
|
2019-04-22 07:40:08 +00:00
|
|
|
outside_closure_1(a);
|
|
|
|
//~^ ERROR cannot borrow `*a` as mutable because previous closure requires unique access
|
2017-12-07 21:15:11 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
outside_closure_2(a);
|
|
|
|
//~^ ERROR cannot borrow `*a` as immutable because previous closure requires unique access
|
2018-04-09 09:28:00 +00:00
|
|
|
|
|
|
|
drop(bar);
|
2016-08-23 13:35:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|