rust/tests/ui/coroutine/yield-in-initializer.stderr
Oli Scherer aef0f4024a Error on using yield without also using #[coroutine] on the closure
And suggest adding the `#[coroutine]` to the closure
2024-04-24 08:05:29 +00:00

19 lines
541 B
Plaintext

warning: unused coroutine that must be used
--> $DIR/yield-in-initializer.rs:6:18
|
LL | #[coroutine] static || {
| __________________^
LL | | loop {
LL | | // Test that `opt` is not live across the yield, even when borrowed in a loop
LL | | // See https://github.com/rust-lang/rust/issues/52792
... |
LL | | }
LL | | };
| |_____^
|
= note: coroutines are lazy and do nothing unless resumed
= note: `#[warn(unused_must_use)]` on by default
warning: 1 warning emitted