blob: 07aa3bfe40dea06e94f2da26f0a40d493b70ed81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0369]: binary operation `%` cannot be applied to type `&&{integer}`
--> $DIR/binary-op-on-double-ref.rs:14:9
|
LL | x % 2 == 0
| ^^^^^
|
= note: this is a reference to a type that `%` can be applied to; you need to dereference this variable once for this operation to work
= note: an implementation of `std::ops::Rem` might be missing for `&&{integer}`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0369`.
|