summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/wf-eval-order.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:42 +0000
commit837b550238aa671a591ccf282dddeab29cadb206 (patch)
tree914b6b8862bace72bd3245ca184d374b08d8a672 /tests/ui/impl-trait/wf-eval-order.rs
parentAdding debian version 1.70.0+dfsg2-1. (diff)
downloadrustc-837b550238aa671a591ccf282dddeab29cadb206.tar.xz
rustc-837b550238aa671a591ccf282dddeab29cadb206.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/impl-trait/wf-eval-order.rs')
-rw-r--r--tests/ui/impl-trait/wf-eval-order.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/impl-trait/wf-eval-order.rs b/tests/ui/impl-trait/wf-eval-order.rs
index c7d6bb870..8638fc2e7 100644
--- a/tests/ui/impl-trait/wf-eval-order.rs
+++ b/tests/ui/impl-trait/wf-eval-order.rs
@@ -31,9 +31,9 @@ fn main() {
//
// - `wf(typeof(x))` because we use a projection candidate.
// - `<i32 as B>::V: Clone` because that's a bound on the trait.
- // - `<i32 as B>::V` normalizes to `_#1` where `<i32 as A>::U == _#1`
+ // - `<i32 as B>::V` normalizes to `?1t` where `<i32 as A>::U == ?1t`
//
- // This all works if we evaluate `<i32 as A>::U == _#1` before
+ // This all works if we evaluate `<i32 as A>::U == ?1t` before
// `<i32 as B>::V`, but we previously had the opposite order.
let x = hide(X(0));
}