rust/src/test/ui/E0501.rs

29 lines
743 B
Rust
Raw Normal View History

// ignore-tidy-linelength
// revisions: ast mir
//[mir]compile-flags: -Z borrowck=mir
2016-08-23 08:35:59 -05:00
fn inside_closure(x: &mut i32) {
}
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)
};
outside_closure_1(a); //[ast]~ ERROR cannot borrow `*a` as mutable because previous closure requires unique access
//[mir]~^ ERROR cannot borrow `*a` as mutable because previous closure requires unique access
outside_closure_2(a); //[ast]~ ERROR cannot borrow `*a` as immutable because previous closure requires unique access
//[mir]~^ ERROR cannot borrow `*a` as immutable because previous closure requires unique access
drop(bar);
2016-08-23 08:35:59 -05:00
}
fn main() {
}