2017-07-26 18:59:07 +03:00
|
|
|
error: the order of `mut` and `ref` is incorrect
|
|
|
|
--> $DIR/mut-ref.rs:14:9
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let mut ref x = 10; //~ ERROR the order of `mut` and `ref` is incorrect
|
2017-07-26 18:59:07 +03:00
|
|
|
| ^^^^^^^ help: try switching the order: `ref mut`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|