rust/tests/ui/loops/issue-43162.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
757 B
Plaintext
Raw Normal View History

error[E0268]: `break` outside of a loop or labeled block
2018-12-25 15:56:47 +00:00
--> $DIR/issue-43162.rs:3:5
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | break true;
| ^^^^^^^^^^ cannot `break` outside of a loop or labeled block
2018-07-15 21:11:54 +00:00
error[E0268]: `break` outside of a loop or labeled block
2018-12-25 15:56:47 +00:00
--> $DIR/issue-43162.rs:7:5
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | break {};
| ^^^^^^^^ cannot `break` outside of a loop or labeled block
2018-07-15 21:11:54 +00:00
error[E0308]: mismatched types
--> $DIR/issue-43162.rs:1:13
2018-07-15 21:11:54 +00:00
|
LL | fn foo() -> bool {
| --- ^^^^ expected `bool`, found `()`
2018-12-30 23:41:19 +00:00
| |
2019-08-08 23:56:57 +00:00
| implicitly returns `()` as its body has no tail or `return` expression
2018-07-15 21:11:54 +00:00
error: aborting due to 3 previous errors
Some errors have detailed explanations: E0268, E0308.
2018-07-15 21:11:54 +00:00
For more information about an error, try `rustc --explain E0268`.