We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e855d5 commit 953a71aCopy full SHA for 953a71a
src/librustdoc/clean/utils.rs
@@ -470,6 +470,12 @@ pub(crate) fn get_auto_trait_and_blanket_impls(
470
cx: &mut DocContext<'_>,
471
item_def_id: DefId,
472
) -> impl Iterator<Item = Item> {
473
+ // FIXME: To be removed once `parallel_compiler` bugs are fixed!
474
+ // More information in <https://github.com/rust-lang/rust/pull/106930>.
475
+ if cfg!(parallel_compiler) {
476
+ return vec![].into_iter().chain(vec![].into_iter());
477
+ }
478
+
479
let auto_impls = cx
480
.sess()
481
.prof
0 commit comments