]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/type-error-break-tail.stderr
Merge commit 'c19edfd71a1d0ddef86c2c67fdb40718d40a72b4' into sync_cg_clif-2022-07-25
[rust.git] / src / test / ui / type / type-error-break-tail.stderr
1 error[E0308]: mismatched types
2   --> $DIR/type-error-break-tail.rs:3:20
3    |
4 LL | fn loop_ending() -> i32 {
5    |                     --- expected `i32` because of return type
6 LL |     loop {
7 LL |         if false { break; }
8    |                    ^^^^^
9    |                    |
10    |                    expected `i32`, found `()`
11    |                    help: give it a value of the expected type: `break 42`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.