mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
638 B
Plaintext
20 lines
638 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/break-diverging-value.rs:11:26
|
|
|
|
|
LL | fn loop_break_break() -> i32 {
|
|
| ---------------- ^^^ expected `i32`, found `()`
|
|
| |
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/break-diverging-value.rs:25:25
|
|
|
|
|
LL | fn loop_break_void() -> i32 {
|
|
| --------------- ^^^ expected `i32`, found `()`
|
|
| |
|
|
| implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|