rust/src/test/ui/did_you_mean/issue-37139.stderr

13 lines
439 B
Plaintext
Raw Normal View History

2017-05-27 19:58:52 +02:00
error[E0596]: cannot borrow immutable local variable `x` as mutable
2018-12-25 08:56:47 -07:00
--> $DIR/issue-37139.rs:12:23
2016-11-01 23:15:02 -07:00
|
2018-02-23 03:42:32 +03:00
LL | test(&mut x); //~ ERROR cannot borrow immutable
2016-11-01 23:15:02 -07:00
| ^
| |
| cannot reborrow mutably
2017-07-05 09:58:22 -07:00
| try removing `&mut` here
2016-11-01 23:15:02 -07:00
error: aborting due to previous error
2016-11-01 23:15:02 -07:00
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0596`.