|
| 1 | +error[E0499]: cannot borrow `x` as mutable more than once at a time |
| 2 | + --> $DIR/borrowck-closures-two-mut-fail.rs:26:24 |
| 3 | + | |
| 4 | +LL | let c1 = to_fn_mut(|| x = 4); |
| 5 | + | -- - first borrow occurs due to use of `x` in closure |
| 6 | + | | |
| 7 | + | first mutable borrow occurs here |
| 8 | +LL | let c2 = to_fn_mut(|| x = 5); //~ ERROR cannot borrow `x` as mutable more than once |
| 9 | + | ^^ - second borrow occurs due to use of `x` in closure |
| 10 | + | | |
| 11 | + | second mutable borrow occurs here |
| 12 | +LL | c1; |
| 13 | + | -- borrow later used here |
| 14 | + |
| 15 | +error[E0499]: cannot borrow `x` as mutable more than once at a time |
| 16 | + --> $DIR/borrowck-closures-two-mut-fail.rs:37:24 |
| 17 | + | |
| 18 | +LL | let c1 = to_fn_mut(|| set(&mut x)); |
| 19 | + | -- - first borrow occurs due to use of `x` in closure |
| 20 | + | | |
| 21 | + | first mutable borrow occurs here |
| 22 | +LL | let c2 = to_fn_mut(|| set(&mut x)); //~ ERROR cannot borrow `x` as mutable more than once |
| 23 | + | ^^ - second borrow occurs due to use of `x` in closure |
| 24 | + | | |
| 25 | + | second mutable borrow occurs here |
| 26 | +LL | c1; |
| 27 | + | -- borrow later used here |
| 28 | + |
| 29 | +error[E0499]: cannot borrow `x` as mutable more than once at a time |
| 30 | + --> $DIR/borrowck-closures-two-mut-fail.rs:44:24 |
| 31 | + | |
| 32 | +LL | let c1 = to_fn_mut(|| x = 5); |
| 33 | + | -- - first borrow occurs due to use of `x` in closure |
| 34 | + | | |
| 35 | + | first mutable borrow occurs here |
| 36 | +LL | let c2 = to_fn_mut(|| set(&mut x)); //~ ERROR cannot borrow `x` as mutable more than once |
| 37 | + | ^^ - second borrow occurs due to use of `x` in closure |
| 38 | + | | |
| 39 | + | second mutable borrow occurs here |
| 40 | +LL | c1; |
| 41 | + | -- borrow later used here |
| 42 | + |
| 43 | +error[E0499]: cannot borrow `x` as mutable more than once at a time |
| 44 | + --> $DIR/borrowck-closures-two-mut-fail.rs:51:24 |
| 45 | + | |
| 46 | +LL | let c1 = to_fn_mut(|| x = 5); |
| 47 | + | -- - first borrow occurs due to use of `x` in closure |
| 48 | + | | |
| 49 | + | first mutable borrow occurs here |
| 50 | +LL | let c2 = to_fn_mut(|| { let _y = to_fn_mut(|| set(&mut x)); }); // (nested closure) |
| 51 | + | ^^ - second borrow occurs due to use of `x` in closure |
| 52 | + | | |
| 53 | + | second mutable borrow occurs here |
| 54 | +LL | //~^ ERROR cannot borrow `x` as mutable more than once |
| 55 | +LL | c1; |
| 56 | + | -- borrow later used here |
| 57 | + |
| 58 | +error[E0499]: cannot borrow `x` as mutable more than once at a time |
| 59 | + --> $DIR/borrowck-closures-two-mut-fail.rs:63:24 |
| 60 | + | |
| 61 | +LL | let c1 = to_fn_mut(|| set(&mut *x.f)); |
| 62 | + | -- - first borrow occurs due to use of `x` in closure |
| 63 | + | | |
| 64 | + | first mutable borrow occurs here |
| 65 | +LL | let c2 = to_fn_mut(|| set(&mut *x.f)); |
| 66 | + | ^^ - second borrow occurs due to use of `x` in closure |
| 67 | + | | |
| 68 | + | second mutable borrow occurs here |
| 69 | +LL | //~^ ERROR cannot borrow `x` as mutable more than once |
| 70 | +LL | c1; |
| 71 | + | -- borrow later used here |
| 72 | + |
| 73 | +error: aborting due to 5 previous errors |
| 74 | + |
| 75 | +For more information about this error, try `rustc --explain E0499`. |
0 commit comments