2023-10-19 21:46:28 +00:00
|
|
|
warning: unused coroutine that must be used
|
2020-07-28 00:00:00 +00:00
|
|
|
--> $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
|
2020-07-28 00:00:00 +00:00
|
|
|
LL | | // during the yield expression. Type checking will also compute liveness
|
|
|
|
LL | | // and it should also find out that `a` is not live.
|
|
|
|
... |
|
2021-06-18 07:09:40 +00:00
|
|
|
LL | | let _ = &a;
|
2020-07-28 00:00:00 +00:00
|
|
|
LL | | };
|
2022-08-16 14:46:33 +00:00
|
|
|
| |_________^
|
2020-07-28 00:00:00 +00:00
|
|
|
|
|
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
|
2020-07-28 00:00:00 +00:00
|
|
|
|
|
|
|
warning: 1 warning emitted
|
|
|
|
|