rust/tests/ui/coroutine/too-live-local-in-immovable-gen.stderr

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

18 lines
608 B
Plaintext
Raw Normal View History

2023-10-19 21:46:28 +00:00
warning: unused coroutine that must be used
--> $DIR/too-live-local-in-immovable-gen.rs:8:9
|
LL | / static move || {
2023-10-19 21:46:28 +00:00
LL | | // Tests that the coroutine transformation finds out that `a` is not live
LL | | // during the yield expression. Type checking will also compute liveness
LL | | // and it should also find out that `a` is not live.
... |
LL | | let _ = &a;
LL | | };
| |_________^
|
2023-10-19 21:46:28 +00:00
= note: coroutines are lazy and do nothing unless resumed
2022-09-18 15:55:36 +00:00
= note: `#[warn(unused_must_use)]` on by default
warning: 1 warning emitted