]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/type-error-break-tail.stderr
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[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`.