diff options
| author | Joshua Nelson <jnelson@cloudflare.com> | 2022-06-21 19:43:46 -0500 |
|---|---|---|
| committer | Joshua Nelson <jnelson@cloudflare.com> | 2022-06-21 19:44:53 -0500 |
| commit | b052d76586988040c6ae8aef609794ae16cc28dc (patch) | |
| tree | f9b230c65df00910ef0cf41f603310165f573f5a /src/test/ui/async-await/partial-drop-partial-reinit.rs | |
| parent | 1deca0425db3e74a61cb732e729c0777904e549c (diff) | |
| download | rust-b052d76586988040c6ae8aef609794ae16cc28dc.tar.gz rust-b052d76586988040c6ae8aef609794ae16cc28dc.zip | |
Address review comments from #98259
It got merged so fast I didn't have time to make changes xD
Diffstat (limited to 'src/test/ui/async-await/partial-drop-partial-reinit.rs')
| -rw-r--r-- | src/test/ui/async-await/partial-drop-partial-reinit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/async-await/partial-drop-partial-reinit.rs b/src/test/ui/async-await/partial-drop-partial-reinit.rs index 4fcfacea3f8..fe0fce7afd9 100644 --- a/src/test/ui/async-await/partial-drop-partial-reinit.rs +++ b/src/test/ui/async-await/partial-drop-partial-reinit.rs @@ -26,7 +26,7 @@ impl Drop for NotSend { impl !Send for NotSend {} async fn foo() { -//~^ NOTE used within this async block +//~^ NOTE used within this `async fn` body //~| NOTE within this `impl Future let mut x = (NotSend {},); drop(x.0); |
