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