summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/control-flow/issue-50577.stderr
blob: b6e73f889adaba6bd945ed9bb6663ecf6458ece2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0317]: `if` may be missing an `else` clause
  --> $DIR/issue-50577.rs:3:16
   |
LL |         Drop = assert_eq!(1, 1),
   |                ^^^^^^^^^^^^^^^^ expected `()`, found `isize`
   |
   = 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`.