blob: 339da7f8a020c84291df8190406276c2c7c33b27 (
plain)
1
2
3
4
5
6
7
8
|
error: the order of `mut` and `ref` is incorrect
--> $DIR/mut-ref.rs:2:9
|
LL | let mut ref x = 10; //~ ERROR the order of `mut` and `ref` is incorrect
| ^^^^^^^ help: try switching the order: `ref mut`
error: aborting due to previous error
|