]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/borrowck-fn-in-const-b.stderr
Rollup merge of #87922 - Manishearth:c-enum-target-spec, r=nagisa,eddyb
[rust.git] / src / test / ui / span / borrowck-fn-in-const-b.stderr
1 error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
2   --> $DIR/borrowck-fn-in-const-b.rs:7:9
3    |
4 LL |     fn broken(x: &Vec<String>) {
5    |                  ------------ help: consider changing this to be a mutable reference: `&mut Vec<String>`
6 LL |         x.push(format!("this is broken"));
7    |         ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0596`.