summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/wf-eval-order.rs
diff options
context:
space:
mode:
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));
}