From f1cf54470bf352a758ea4f4de1c0e6217e26763e Mon Sep 17 00:00:00 2001 From: fee1-dead Date: Wed, 16 Mar 2022 21:50:18 +1100 Subject: [PATCH] Update issue-92111.rs --- src/test/ui/rfc-2632-const-trait-impl/issue-92111.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/ui/rfc-2632-const-trait-impl/issue-92111.rs b/src/test/ui/rfc-2632-const-trait-impl/issue-92111.rs index d30f4edd4b25c..9bf0886084f91 100644 --- a/src/test/ui/rfc-2632-const-trait-impl/issue-92111.rs +++ b/src/test/ui/rfc-2632-const-trait-impl/issue-92111.rs @@ -1,7 +1,7 @@ // Regression test for #92111. // // The issue was that we normalize trait bounds before caching -// results of selection. Checking that `impl NoDrop for S` requires +// results of selection. Checking that `impl Tr for S` requires // checking `S: !Drop` because it cannot overlap with the blanket // impl. Then we save the (unsatisfied) result from checking `S: Drop`. // Then the call to `a` checks whether `S: ~const Drop` but we normalize