rust/tests/ui/coroutine/print/coroutine-print-verbose-3.stderr

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

20 lines
567 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
--> $DIR/coroutine-print-verbose-3.rs:7:25
|
2023-10-19 16:46:28 -05:00
LL | let coroutine :() = || {
| ____________________--___^
| | |
| | expected due to this
LL | |
LL | | yield 1i32;
LL | | return x
LL | | };
2023-10-19 16:46:28 -05:00
| |_____^ expected `()`, found coroutine
|
= note: expected unit type `()`
2023-10-19 16:46:28 -05:00
found coroutine `{main::{closure#0} upvar_tys=(unavailable)}`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.