Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-09-15 11:48:34 -07:00
error: implementer of `Wow` held across a suspend point, but should not be
--> $DIR/trait.rs:24:9
2021-09-04 19:36:51 -07:00
|
LL | let _guard1 = r#impl();
| ^^^^^^^
...
LL | other().await;
| ------ the value is held across this suspend point
2021-09-04 19:36:51 -07:00
|
2021-09-15 11:48:34 -07:00
help: consider using a block (`{ ... }`) to shrink the value's scope, ending before the suspend point
--> $DIR/trait.rs:24:9
2021-09-04 19:36:51 -07:00
|
LL | let _guard1 = r#impl();
| ^^^^^^^
2022-09-18 19:55:36 +04:00
note: the lint level is defined here
--> $DIR/trait.rs:6:9
2022-09-18 19:55:36 +04:00
|
LL | #![deny(must_not_suspend)]
| ^^^^^^^^^^^^^^^^
2021-09-04 19:36:51 -07:00
2021-09-15 11:48:34 -07:00
error: boxed `Wow` trait object held across a suspend point, but should not be
--> $DIR/trait.rs:25:9
2021-09-04 19:36:51 -07:00
|
LL | let _guard2 = r#dyn();
| ^^^^^^^
2022-06-08 21:07:59 +03:00
LL |
2021-09-04 19:36:51 -07:00
LL | other().await;
| ------ the value is held across this suspend point
2021-09-04 19:36:51 -07:00
|
2021-09-15 11:48:34 -07:00
help: consider using a block (`{ ... }`) to shrink the value's scope, ending before the suspend point
--> $DIR/trait.rs:25:9
2021-09-04 19:36:51 -07:00
|
LL | let _guard2 = r#dyn();
| ^^^^^^^
error: aborting due to 2 previous errors