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