mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-25 13:24:22 +00:00
15 lines
363 B
Plaintext
15 lines
363 B
Plaintext
![]() |
error[E0308]: mismatched types
|
||
|
--> $DIR/loop-no-implicit-break.rs:3:9
|
||
|
|
|
||
|
LL | 10
|
||
|
| ^^ expected `()`, found integer
|
||
|
|
|
||
|
help: you might have meant to break the loop with this value
|
||
|
|
|
||
|
LL | break 10;
|
||
|
| ^^^^^ ^
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0308`.
|