rust/src/test/ui/mut-ref.stderr

9 lines
264 B
Plaintext
Raw Normal View History

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
| ^^^^^^^ help: try switching the order: `ref mut`
error: aborting due to previous error