rust/src/test/ui/borrowck/index-mut-help.stderr

28 lines
1.3 KiB
Plaintext
Raw Normal View History

error[E0596]: cannot borrow data in an index of `std::collections::HashMap<&str, std::string::String>` as mutable
2018-12-25 09:56:47 -06:00
--> $DIR/index-mut-help.rs:11:5
|
2019-03-09 06:03:44 -06:00
LL | map["peter"].clear();
| ^^^^^^^^^^^^ cannot borrow as mutable
|
= help: trait `IndexMut` is required to modify indexed content, but it is not implemented for `std::collections::HashMap<&str, std::string::String>`
error[E0594]: cannot assign to data in an index of `std::collections::HashMap<&str, std::string::String>`
2018-12-25 09:56:47 -06:00
--> $DIR/index-mut-help.rs:12:5
|
2019-03-09 06:03:44 -06:00
LL | map["peter"] = "0".to_string();
| ^^^^^^^^^^^^ cannot assign
|
= help: trait `IndexMut` is required to modify indexed content, but it is not implemented for `std::collections::HashMap<&str, std::string::String>`
error[E0596]: cannot borrow data in an index of `std::collections::HashMap<&str, std::string::String>` as mutable
--> $DIR/index-mut-help.rs:13:13
|
2019-03-09 06:03:44 -06:00
LL | let _ = &mut map["peter"];
| ^^^^^^^^^^^^^^^^^ cannot borrow as mutable
|
= help: trait `IndexMut` is required to modify indexed content, but it is not implemented for `std::collections::HashMap<&str, std::string::String>`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0596`.