rust/src/test/ui/mut-ref.stderr
Vadim Petrochenkov fa2d9fc4b9 Update UI tests
2018-02-26 20:24:02 +03:00

9 lines
264 B
Plaintext

error: the order of `mut` and `ref` is incorrect
--> $DIR/mut-ref.rs:14: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