rust/tests/ui/did_you_mean/issue-37139.stderr

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

13 lines
406 B
Plaintext
Raw Normal View History

error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
--> $DIR/issue-37139.rs:12:18
2016-11-02 01:15:02 -05:00
|
2019-03-09 06:03:44 -06:00
LL | test(&mut x);
| ^^^^^^
| |
| cannot borrow as mutable
| help: try removing `&mut` here
2016-11-02 01:15:02 -05:00
error: aborting due to previous error
2016-11-02 01:15:02 -05:00
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0596`.