2020-09-29 00:03:02 +00:00
|
|
|
error[E0308]: mismatched types
|
2020-10-21 21:52:41 +00:00
|
|
|
--> $DIR/break-diverging-value.rs:11:26
|
2020-09-29 00:03:02 +00:00
|
|
|
|
|
|
|
|
LL | fn loop_break_break() -> i32 {
|
|
|
|
| ---------------- ^^^ expected `i32`, found `()`
|
|
|
|
| |
|
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
|
2020-10-21 21:52:41 +00:00
|
|
|
error[E0308]: mismatched types
|
2020-10-22 22:12:46 +00:00
|
|
|
--> $DIR/break-diverging-value.rs:25:25
|
2020-10-21 21:52:41 +00:00
|
|
|
|
|
|
|
|
LL | fn loop_break_void() -> i32 {
|
|
|
|
| --------------- ^^^ expected `i32`, found `()`
|
|
|
|
| |
|
|
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
|
2020-10-22 22:12:46 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2020-09-29 00:03:02 +00:00
|
|
|
|
2020-10-22 22:12:46 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|