rust/tests/ui/binop/binary-op-on-double-ref.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
462 B
Plaintext
Raw Normal View History

error[E0369]: cannot calculate the remainder of `&&{integer}` divided by `{integer}`
--> $DIR/binary-op-on-double-ref.rs:5:11
|
2018-02-23 08:42:32 +08:00
LL | x % 2 == 0
| - ^ - {integer}
| |
| &&{integer}
|
help: `%` can be used on `&{integer}` if you dereference the left-hand side
|
LL | *x % 2 == 0
| +
error: aborting due to 1 previous error
2018-03-03 22:59:40 +08:00
For more information about this error, try `rustc --explain E0369`.