2022-10-01 05:19:31 -05:00
|
|
|
error: implementer of `Wow` held across a suspend point, but should not be
|
2023-05-07 13:38:52 -05:00
|
|
|
--> $DIR/trait.rs:21:9
|
2022-10-01 05:19:31 -05:00
|
|
|
|
|
|
|
|
LL | let _guard1 = r#impl();
|
|
|
|
| ^^^^^^^
|
|
|
|
...
|
|
|
|
LL | other().await;
|
2023-04-25 13:59:16 -05:00
|
|
|
| ----- the value is held across this suspend point
|
2022-10-01 05:19:31 -05:00
|
|
|
|
|
|
|
|
help: consider using a block (`{ ... }`) to shrink the value's scope, ending before the suspend point
|
2023-05-07 13:38:52 -05:00
|
|
|
--> $DIR/trait.rs:21:9
|
2022-10-01 05:19:31 -05:00
|
|
|
|
|
|
|
|
LL | let _guard1 = r#impl();
|
|
|
|
| ^^^^^^^
|
|
|
|
note: the lint level is defined here
|
2023-05-07 13:38:52 -05:00
|
|
|
--> $DIR/trait.rs:3:9
|
2022-10-01 05:19:31 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(must_not_suspend)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: boxed `Wow` trait object held across a suspend point, but should not be
|
2023-05-07 13:38:52 -05:00
|
|
|
--> $DIR/trait.rs:22:9
|
2022-10-01 05:19:31 -05:00
|
|
|
|
|
|
|
|
LL | let _guard2 = r#dyn();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL |
|
|
|
|
LL | other().await;
|
2023-04-25 13:59:16 -05:00
|
|
|
| ----- the value is held across this suspend point
|
2022-10-01 05:19:31 -05:00
|
|
|
|
|
|
|
|
help: consider using a block (`{ ... }`) to shrink the value's scope, ending before the suspend point
|
2023-05-07 13:38:52 -05:00
|
|
|
--> $DIR/trait.rs:22:9
|
2022-10-01 05:19:31 -05:00
|
|
|
|
|
|
|
|
LL | let _guard2 = r#dyn();
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|