about summary refs log tree commit diff
path: root/src/test/ui/binary-op-on-double-ref.stderr
blob: d036f06a8c7d0321bc1d0ffa496408d679976265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0369]: binary operation `%` cannot be applied to type `&&{integer}`
  --> $DIR/binary-op-on-double-ref.rs:4:11
   |
LL |         x % 2 == 0
   |         - ^ - {integer}
   |         |
   |         &&{integer}
   |
   = help: `%` can be used on '{integer}', you can dereference `x`: `*x`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0369`.