Skip to content

Commit d39a1be

Browse files
committed
Check implementing type for #[doc(hidden)]
Closes #85526.
1 parent 6f53ddf commit d39a1be

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

compiler/rustc_lint/src/builtin.rs

+18
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,24 @@ impl<'tcx> LateLintPass<'tcx> for MissingDoc {
657657
return;
658658
}
659659

660+
// If the method is an impl for an item with docs_hidden, don't doc.
661+
if method_context(cx, impl_item.hir_id()) == MethodLateContext::PlainImpl {
662+
let parent = cx.tcx.hir().get_parent_did(impl_item.hir_id());
663+
let impl_ty = cx.tcx.type_of(parent);
664+
let outerdef = match impl_ty.kind() {
665+
ty::Adt(def, _) => Some(def.did),
666+
ty::Foreign(def_id) => Some(*def_id),
667+
_ => None,
668+
};
669+
let is_hidden = match outerdef {
670+
Some(id) => cx.tcx.is_doc_hidden(id),
671+
None => false,
672+
};
673+
if is_hidden {
674+
return;
675+
}
676+
}
677+
660678
let (article, desc) = cx.tcx.article_and_description(impl_item.def_id.to_def_id());
661679
self.check_missing_docs_attrs(cx, impl_item.def_id, impl_item.span, article, desc);
662680
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// check-pass
2+
// See issue #85526.
3+
// This test should produce no warnings.
4+
5+
#![deny(missing_docs)]
6+
//! Crate docs
7+
8+
#[doc(hidden)]
9+
pub struct Foo;
10+
11+
impl Foo {
12+
pub fn bar() {}
13+
}
14+
15+
fn main() {}

0 commit comments

Comments
 (0)