]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-36400.stderr
Rollup merge of #106175 - compiler-errors:bad-import-sugg, r=oli-obk
[rust.git] / src / test / ui / issues / issue-36400.stderr
1 error[E0596]: cannot borrow `*x` as mutable, as `x` is not declared as mutable
2   --> $DIR/issue-36400.rs:5:7
3    |
4 LL |     f(&mut *x);
5    |       ^^^^^^^ cannot borrow as mutable
6    |
7 help: consider changing this to be mutable
8    |
9 LL |     let mut x = Box::new(3);
10    |         +++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0596`.