]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-40288.stderr
Re-add #[allow(unused)] attr
[rust.git] / tests / ui / issues / issue-40288.stderr
1 error[E0506]: cannot assign to `*refr` because it is borrowed
2   --> $DIR/issue-40288.rs:16:5
3    |
4 LL |     save_ref(&*refr, &mut out);
5    |              ------ borrow of `*refr` occurs here
6 ...
7 LL |     *refr = 3;
8    |     ^^^^^^^^^ assignment to borrowed `*refr` occurs here
9 ...
10 LL |     println!("{:?}", out[0]);
11    |                      ------ borrow later used here
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0506`.