error: boxed `Umm` held across a yield point, but should not be --> $DIR/boxed.rs:20:9 | LL | let _guard = bar(); | ^^^^^^ LL | other().await; | ------------- the value is held across this yield point | note: the lint level is defined here --> $DIR/boxed.rs:3:9 | LL | #![deny(must_not_suspend)] | ^^^^^^^^^^^^^^^^ note: You gotta use Umm's, ya know? --> $DIR/boxed.rs:20:9 | LL | let _guard = bar(); | ^^^^^^ help: `drop` this value before the yield point, or use a block (`{ ... }`) to shrink its scope --> $DIR/boxed.rs:20:9 | LL | let _guard = bar(); | ^^^^^^ error: aborting due to previous error