summaryrefslogtreecommitdiffstats
path: root/tests/ui/coroutine/too-live-local-in-immovable-gen.stderr
blob: 4a67dbe71e19ba471a988eb04fbf333e7b53e130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
warning: unused coroutine that must be used
  --> $DIR/too-live-local-in-immovable-gen.rs:8:9
   |
LL | /         static move || {
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 | |         };
   | |_________^
   |
   = note: coroutines are lazy and do nothing unless resumed
   = note: `#[warn(unused_must_use)]` on by default

warning: 1 warning emitted