about summary refs log tree commit diff
path: root/tests/ui/coroutine/yield-in-initializer.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/coroutine/yield-in-initializer.stderr')
-rw-r--r--tests/ui/coroutine/yield-in-initializer.stderr2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/ui/coroutine/yield-in-initializer.stderr b/tests/ui/coroutine/yield-in-initializer.stderr
index 1e22b787668..69b7dec8b84 100644
--- a/tests/ui/coroutine/yield-in-initializer.stderr
+++ b/tests/ui/coroutine/yield-in-initializer.stderr
@@ -4,8 +4,6 @@ warning: unused coroutine that must be used
 LL |       #[coroutine] static || {
    |  __________________^
 LL | |         loop {
-LL | |             // Test that `opt` is not live across the yield, even when borrowed in a loop
-LL | |             // See https://github.com/rust-lang/rust/issues/52792
 ...  |
 LL | |         }
 LL | |     };