]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41726.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-41726.stderr
1 error[E0596]: cannot borrow immutable indexed content as mutable
2   --> $DIR/issue-41726.rs:5:9
3    |
4 LL |         things[src.as_str()].sort(); //~ ERROR cannot borrow immutable
5    |         ^^^^^^^^^^^^^^^^^^^^ cannot borrow as mutable
6    |
7    = help: trait `IndexMut` is required to modify indexed content, but it is not implemented for `std::collections::HashMap<std::string::String, std::vec::Vec<std::string::String>>`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0596`.