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

14 lines
381 B
Plaintext
Raw Normal View History

2019-12-10 21:03:13 +00:00
error[E0369]: cannot mod `&&{integer}` by `{integer}`
--> $DIR/binary-op-on-double-ref.rs:4:11
|
2018-02-23 00:42:32 +00:00
LL | x % 2 == 0
| - ^ - {integer}
| |
| &&{integer}
|
2018-05-09 09:38:09 +00:00
= help: `%` can be used on '{integer}', you can dereference `x`: `*x`
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0369`.