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