rust/tests/ui/pattern/patkind-ref-binding-issue-114896.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
432 B
Plaintext
Raw Normal View History

2023-09-05 22:33:03 -05:00
error[E0596]: cannot borrow `b` as mutable, as it is not declared as mutable
--> $DIR/patkind-ref-binding-issue-114896.rs:7:9
2023-09-05 22:33:03 -05:00
|
LL | b.make_ascii_uppercase();
| ^ cannot borrow as mutable
2024-07-03 18:26:10 -05:00
|
help: consider changing this to be mutable
|
LL | let &(mut b) = a;
| ~~~~~ +
2023-09-05 22:33:03 -05:00
error: aborting due to 1 previous error
2023-09-05 22:33:03 -05:00
For more information about this error, try `rustc --explain E0596`.