]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-43162.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-43162.stderr
1 error[E0268]: `break` outside of loop
2   --> $DIR/issue-43162.rs:3:5
3    |
4 LL |     break true;
5    |     ^^^^^^^^^^ cannot break outside of a loop
6
7 error[E0268]: `break` outside of loop
8   --> $DIR/issue-43162.rs:7:5
9    |
10 LL |     break {};
11    |     ^^^^^^^^ cannot break outside of a loop
12
13 error[E0308]: mismatched types
14   --> $DIR/issue-43162.rs:1:13
15    |
16 LL | fn foo() -> bool {
17    |    ---      ^^^^ expected bool, found ()
18    |    |
19    |    this function's body doesn't return
20 LL |
21 LL |     break true;
22    |               - help: consider removing this semicolon
23    |
24    = note: expected type `bool`
25               found type `()`
26
27 error: aborting due to 3 previous errors
28
29 Some errors have detailed explanations: E0268, E0308.
30 For more information about an error, try `rustc --explain E0268`.