rust/src/test/ui/nll/get_default.stderr

52 lines
1.7 KiB
Plaintext
Raw Normal View History

2017-11-06 06:26:34 -06:00
error[E0502]: cannot borrow `*map` as mutable because it is also borrowed as immutable (Ast)
--> $DIR/get_default.rs:33:17
|
2018-02-22 18:42:32 -06:00
LL | match map.get() {
2017-11-06 06:26:34 -06:00
| --- immutable borrow occurs here
...
2018-02-22 18:42:32 -06:00
LL | map.set(String::new()); // Just AST errors here
2017-11-06 06:26:34 -06:00
| ^^^ mutable borrow occurs here
...
2018-02-22 18:42:32 -06:00
LL | }
2017-11-06 06:26:34 -06:00
| - immutable borrow ends here
error[E0502]: cannot borrow `*map` as mutable because it is also borrowed as immutable (Ast)
2017-11-20 06:13:27 -06:00
--> $DIR/get_default.rs:44:17
2017-11-06 06:26:34 -06:00
|
2018-02-22 18:42:32 -06:00
LL | match map.get() {
2017-11-06 06:26:34 -06:00
| --- immutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | Some(v) => {
2018-02-22 18:42:32 -06:00
LL | map.set(String::new()); // Both AST and MIR error here
2017-11-06 06:26:34 -06:00
| ^^^ mutable borrow occurs here
...
2018-02-22 18:42:32 -06:00
LL | }
2017-11-06 06:26:34 -06:00
| - immutable borrow ends here
error[E0502]: cannot borrow `*map` as mutable because it is also borrowed as immutable (Ast)
2017-11-20 06:13:27 -06:00
--> $DIR/get_default.rs:50:17
2017-11-06 06:26:34 -06:00
|
2018-02-22 18:42:32 -06:00
LL | match map.get() {
2017-11-06 06:26:34 -06:00
| --- immutable borrow occurs here
...
2018-02-22 18:42:32 -06:00
LL | map.set(String::new()); // Just AST errors here
2017-11-06 06:26:34 -06:00
| ^^^ mutable borrow occurs here
...
2018-02-22 18:42:32 -06:00
LL | }
2017-11-06 06:26:34 -06:00
| - immutable borrow ends here
error[E0502]: cannot borrow `*map` as mutable because it is also borrowed as immutable (Mir)
2017-11-20 06:13:27 -06:00
--> $DIR/get_default.rs:44:17
2017-11-06 06:26:34 -06:00
|
2018-02-22 18:42:32 -06:00
LL | match map.get() {
2017-11-06 06:26:34 -06:00
| --- immutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | Some(v) => {
2018-02-22 18:42:32 -06:00
LL | map.set(String::new()); // Both AST and MIR error here
2017-11-06 06:26:34 -06:00
| ^^^ mutable borrow occurs here
...
2018-02-22 18:42:32 -06:00
LL | return v;
| - borrow later used here
2017-11-06 06:26:34 -06:00
error: aborting due to 4 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0502`.