]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/span-covering-argument-1.stderr
Rollup merge of #93813 - xldenis:public-mir-passes, r=wesleywiser
[rust.git] / src / test / ui / macros / span-covering-argument-1.stderr
1 error[E0596]: cannot borrow `foo` as mutable, as it is not declared as mutable
2   --> $DIR/span-covering-argument-1.rs:5:14
3    |
4 LL |             let $s = 0;
5    |                 -- help: consider changing this to be mutable: `mut foo`
6 LL |             *&mut $s = 0;
7    |              ^^^^^^^ cannot borrow as mutable
8 ...
9 LL |     bad!(foo whatever);
10    |     ------------------ in this macro invocation
11    |
12    = note: this error originates in the macro `bad` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0596`.