rust/src/test/ui/borrowck/borrowck-closures-two-mut.stderr

154 lines
6.9 KiB
Plaintext
Raw Normal View History

error[E0499]: cannot borrow `x` as mutable more than once at a time (Ast)
--> $DIR/borrowck-closures-two-mut.rs:24:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| x = 4);
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| x = 5); //~ ERROR cannot borrow `x` as mutable more than once
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | //~| ERROR cannot borrow `x` as mutable more than once
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Ast)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:35:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| set(&mut x));
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| set(&mut x)); //~ ERROR cannot borrow `x` as mutable more than once
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | //~| ERROR cannot borrow `x` as mutable more than once
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Ast)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:42:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| x = 5);
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| set(&mut x)); //~ ERROR cannot borrow `x` as mutable more than once
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | //~| ERROR cannot borrow `x` as mutable more than once
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Ast)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:49:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| x = 5);
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| { let _y = to_fn_mut(|| set(&mut x)); }); // (nested closure)
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2017-11-20 06:13:27 -06:00
...
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Ast)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:61:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| set(&mut *x.f));
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| set(&mut *x.f));
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2017-11-20 06:13:27 -06:00
...
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Mir)
--> $DIR/borrowck-closures-two-mut.rs:24:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| x = 4);
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| x = 5); //~ ERROR cannot borrow `x` as mutable more than once
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | //~| ERROR cannot borrow `x` as mutable more than once
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Mir)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:35:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| set(&mut x));
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| set(&mut x)); //~ ERROR cannot borrow `x` as mutable more than once
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | //~| ERROR cannot borrow `x` as mutable more than once
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Mir)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:42:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| x = 5);
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| set(&mut x)); //~ ERROR cannot borrow `x` as mutable more than once
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | //~| ERROR cannot borrow `x` as mutable more than once
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Mir)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:49:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| x = 5);
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| { let _y = to_fn_mut(|| set(&mut x)); }); // (nested closure)
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2017-11-20 06:13:27 -06:00
...
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error[E0499]: cannot borrow `x` as mutable more than once at a time (Mir)
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-closures-two-mut.rs:61:24
|
2018-02-22 18:42:32 -06:00
LL | let c1 = to_fn_mut(|| set(&mut *x.f));
| -- - previous borrow occurs due to use of `x` in closure
| |
| first mutable borrow occurs here
2018-02-22 18:42:32 -06:00
LL | let c2 = to_fn_mut(|| set(&mut *x.f));
| ^^ - borrow occurs due to use of `x` in closure
| |
| second mutable borrow occurs here
2017-11-20 06:13:27 -06:00
...
2018-02-22 18:42:32 -06:00
LL | }
| - first borrow ends here
error: aborting due to 10 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0499"