2020-01-05 00:17:46 +00:00
|
|
|
error[E0317]: `if` may be missing an `else` clause
|
2020-05-21 12:49:38 -07:00
|
|
|
--> $DIR/issue-50577.rs:3:16
|
2019-11-17 21:11:42 -08:00
|
|
|
|
|
2020-05-21 12:49:38 -07:00
|
|
|
LL | Drop = assert_eq!(1, 1),
|
2022-10-05 14:00:51 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^ expected `isize`, found `()`
|
2019-11-17 21:11:42 -08:00
|
|
|
|
|
|
|
|
= note: `if` expressions without `else` evaluate to `()`
|
|
|
|
= help: consider adding an `else` block that evaluates to the expected type
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-11-17 21:11:42 -08:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0317`.
|