2023-11-13 15:07:30 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/binary-op-suggest-deref.rs:6:12
|
|
|
|
|
|
|
|
|
LL | if i < 0 {}
|
|
|
|
| ^ expected `&i64`, found integer
|
|
|
|
|
|
|
|
|
help: consider dereferencing the borrow
|
|
|
|
|
|
|
|
|
LL | if *i < 0 {}
|
|
|
|
| +
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-11-13 15:07:30 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|