]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41726.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-41726.stderr
1 error[E0596]: cannot borrow data in a `&` reference as mutable
2   --> $DIR/issue-41726.rs:5:9
3    |
4 LL |         things[src.as_str()].sort();
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`.