about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-10-05 18:44:46 -0700
committerMichael Howell <michael@notriddle.com>2023-10-22 15:54:36 -0700
commit77da7c655ee2583f336f23f61246bc0885beaf5d (patch)
tree6e5a6f0c8d141f3ea271059a18dbde184e293d3a
parent36b8d58b41c6071bff0f5640b0e01f83cae8cd21 (diff)
downloadrust-77da7c655ee2583f336f23f61246bc0885beaf5d.tar.gz
rust-77da7c655ee2583f336f23f61246bc0885beaf5d.zip
Revert "Add note about lazy_type_alias"
This reverts commit b3686c2fd6ad57912e1b0e778bedb0b9a05c73fa.
-rw-r--r--src/librustdoc/html/render/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs
index 515dedbb85f..029ad750f5b 100644
--- a/src/librustdoc/html/render/mod.rs
+++ b/src/librustdoc/html/render/mod.rs
@@ -1168,8 +1168,8 @@ fn render_assoc_items_inner(
         // don't normally constrain on them anyway.
         // https://github.com/rust-lang/rust/issues/21903
         //
-        // FIXME(lazy_type_alias): Once the feature is complete or stable, rewrite this to use type unification.
-        // Be aware of `tests/rustdoc/issue-112515-impl-ty-alias.rs` which might regress.
+        // If that changes, then this will need to check them with type
+        // unification.
         let aliased_ty = tcx.type_of(alias_def_id).skip_binder();
         let reject_cx = DeepRejectCtxt {
             treat_obligation_params: TreatParams::AsCandidateKey,