]> git.lizzy.rs Git - rust.git/blob - tests/ui/type/type-error-break-tail.stderr
Make `output_filenames` a real query
[rust.git] / tests / 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`.