rust/src/test/ui/borrowck/borrowck-closures-unique.stderr

55 lines
2.0 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0500]: closure requires unique access to `x` but it is already borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/borrowck-closures-unique.rs:26:14
2018-08-08 12:28:26 +00:00
|
LL | let c1 = || get(x);
| -- - first borrow occurs due to use of `x` in closure
2018-08-08 12:28:26 +00:00
| |
| borrow occurs here
2019-03-09 12:03:44 +00:00
LL | let c2 = || set(x);
| ^^ - second borrow occurs due to use of `x` in closure
2018-08-08 12:28:26 +00:00
| |
| closure construction occurs here
LL | c1;
| -- first borrow later used here
2018-08-08 12:28:26 +00:00
error[E0500]: closure requires unique access to `x` but it is already borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/borrowck-closures-unique.rs:32:14
2018-08-08 12:28:26 +00:00
|
LL | let c1 = || get(x);
| -- - first borrow occurs due to use of `x` in closure
2018-08-08 12:28:26 +00:00
| |
| borrow occurs here
2019-03-09 12:03:44 +00:00
LL | let c2 = || { get(x); set(x); };
| ^^ - second borrow occurs due to use of `x` in closure
2018-08-08 12:28:26 +00:00
| |
| closure construction occurs here
LL | c1;
| -- first borrow later used here
2018-08-08 12:28:26 +00:00
error[E0524]: two closures require unique access to `x` at the same time
2018-12-25 15:56:47 +00:00
--> $DIR/borrowck-closures-unique.rs:38:14
2018-08-08 12:28:26 +00:00
|
LL | let c1 = || set(x);
| -- - first borrow occurs due to use of `x` in closure
2018-08-08 12:28:26 +00:00
| |
| first closure is constructed here
2019-03-09 12:03:44 +00:00
LL | let c2 = || set(x);
| ^^ - second borrow occurs due to use of `x` in closure
2018-08-08 12:28:26 +00:00
| |
| second closure is constructed here
LL | c1;
| -- first borrow later used here
2018-08-08 12:28:26 +00:00
error[E0594]: cannot assign to `x`, as it is not declared as mutable
--> $DIR/borrowck-closures-unique.rs:43:38
|
LL | fn e(x: &'static mut isize) {
| - help: consider changing this to be mutable: `mut x`
2019-03-09 12:03:44 +00:00
LL | let c1 = |y: &'static mut isize| x = y;
| ^^^^^ cannot assign
2018-08-08 12:28:26 +00:00
error: aborting due to 4 previous errors
2018-08-08 12:28:26 +00:00
2019-11-06 12:58:44 +00:00
Some errors have detailed explanations: E0500, E0524, E0594.
2019-09-13 13:14:53 +00:00
For more information about an error, try `rustc --explain E0500`.