rust/src/test/ui/binary-op-on-double-ref.stderr

12 lines
353 B
Plaintext
Raw Normal View History

error[E0369]: binary operation `%` cannot be applied to type `&&{integer}`
--> $DIR/binary-op-on-double-ref.rs:14:9
|
2018-02-22 18:42:32 -06:00
LL | x % 2 == 0
| ^^^^^
|
2018-05-08 14:20:41 -05:00
= help: `%` can be used on '&{integer}', you can dereference `x`: `*x`
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0369`.