rust/tests/ui/consts/control-flow/issue-50577.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
564 B
Plaintext
Raw Normal View History

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
|
2020-05-21 14:49:38 -05:00
LL | Drop = assert_eq!(1, 1),
| ^^^^^^^^^^^^^^^^ expected `isize`, found `()`
|
= note: `if` expressions without `else` evaluate to `()`
= help: consider adding an `else` block that evaluates to the expected type
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to previous error
For more information about this error, try `rustc --explain E0317`.