blob: 4b3b4638f26ca08ad4d87ede0e088a13043b6b7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
error[E0268]: `break` outside of loop
--> $DIR/issue-43162.rs:13:5
|
LL | break true; //~ ERROR E0268
| ^^^^^^^^^^ cannot break outside of a loop
error[E0268]: `break` outside of loop
--> $DIR/issue-43162.rs:17:5
|
LL | break {}; //~ ERROR E0268
| ^^^^^^^^ cannot break outside of a loop
error[E0308]: mismatched types
--> $DIR/issue-43162.rs:11:18
|
LL | fn foo() -> bool {
| __________________^
LL | | //~^ ERROR E0308
LL | | break true; //~ ERROR E0268
| | - help: consider removing this semicolon
LL | | }
| |_^ expected bool, found ()
|
= note: expected type `bool`
found type `()`
error: aborting due to 3 previous errors
Some errors occurred: E0268, E0308.
For more information about an error, try `rustc --explain E0268`.
|