docs(dev): Remove reference to features_untracked

This was removed in #114723
This commit is contained in:
Ed Page 2025-02-18 10:28:36 -06:00
parent e124f2d5df
commit 209dd46dad
1 changed files with 1 additions and 3 deletions

View File

@ -167,9 +167,7 @@ a new unstable feature:
1. Prevent usage of the new feature unless the feature gate is set.
You can check it in most places in the compiler using the
expression `tcx.features().$feature_name` (or
`sess.features_untracked().$feature_name` if the
tcx is unavailable)
expression `tcx.features().$feature_name`
If the feature gate is not set, you should either maintain
the pre-feature behavior or raise an error, depending on