rust/tests/ui/issues/issue-27042.stderr

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

49 lines
1.4 KiB
Plaintext
Raw Normal View History

warning: denote infinite loops with `loop { ... }`
--> $DIR/issue-27042.rs:8:9
|
LL | / 'b:
LL | |
LL | | while true { break }; // but here we cite the whole loop
| |__________________^ help: use `loop`
|
= note: `#[warn(while_true)]` on by default
2018-07-15 16:11:54 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/issue-27042.rs:6:16
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | loop { break };
| ^^^^^
| |
| expected `i32`, found `()`
| help: give it a value of the expected type: `break 42`
2018-07-15 16:11:54 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/issue-27042.rs:8:9
2018-07-15 16:11:54 -05:00
|
LL | let _: i32 =
| --- expected due to this
2019-03-09 06:03:44 -06:00
LL | / 'b:
LL | |
2018-07-15 16:11:54 -05:00
LL | | while true { break }; // but here we cite the whole loop
| |____________________________^ expected `i32`, found `()`
2018-07-15 16:11:54 -05:00
error[E0308]: mismatched types
--> $DIR/issue-27042.rs:12:9
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | / 'c:
2018-07-15 16:11:54 -05:00
LL | | for _ in None { break }; // but here we cite the whole loop
| |_______________________________^ expected `i32`, found `()`
2018-07-15 16:11:54 -05:00
error[E0308]: mismatched types
--> $DIR/issue-27042.rs:15:9
2018-07-15 16:11:54 -05:00
|
LL | let _: i32 =
| --- expected due to this
2019-03-09 06:03:44 -06:00
LL | / 'd:
2018-07-15 16:11:54 -05:00
LL | | while let Some(_) = None { break };
| |__________________________________________^ expected `i32`, found `()`
2018-07-15 16:11:54 -05:00
error: aborting due to 4 previous errors; 1 warning emitted
2018-07-15 16:11:54 -05:00
For more information about this error, try `rustc --explain E0308`.