5aab1a9a88
* Suggest potentially missing binop trait bound (fix #73416) * Use structured suggestion for dereference in binop
17 lines
415 B
Plaintext
17 lines
415 B
Plaintext
error[E0369]: cannot mod `&&{integer}` by `{integer}`
|
|
--> $DIR/binary-op-on-double-ref.rs:5:11
|
|
|
|
|
LL | x % 2 == 0
|
|
| - ^ - {integer}
|
|
| |
|
|
| &&{integer}
|
|
|
|
|
help: `%` can be used on `{integer}`, you can dereference `x`
|
|
|
|
|
LL | *x % 2 == 0
|
|
| ^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|