rust/src/test/ui/lint/must_not_suspend/boxed.stderr

24 lines
646 B
Plaintext
Raw Normal View History

2021-09-04 21:36:51 -05:00
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?
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