Closed
Description
Repro:
- Go to nightly docs
- Search for "aborting" (or just go to https://doc.rust-lang.org/nightly/std/?search=aborting)
- Note that the functions
aborting_div
andaborting_rem
appeared. - Clicking into the result will not jump to any functions.
Expected: aborting_div
and aborting_rem
should not appear in the search result.
The aborting_div
and aborting_rem
methods are part of the Int
trait in compiler_builtins
which is not supposed to be exposed. The documentation about this trait is successfully hidden thanks to #44026, but the search entry still exists.