rust/src/test/rustdoc/issue-79201.rs
Wim Looman d93f1d6c04
Apply doc(cfg) from parent items while collecting trait impls
Because trait impls bypass the standard `clean` hierarchy they do not
participate in the `propagate_doc_cfg` pass, so instead we need to
pre-collect all possible `doc(cfg)` attributes that will apply to them
when cleaning.
2020-11-23 17:47:29 +01:00

41 lines
1,014 B
Rust

#![feature(doc_cfg)]
// @has 'issue_79201/trait.Foo.html'
// @count - '//*[@class="stab portability"]' 6
// @matches - '//*[@class="stab portability"]' 'crate feature foo-root'
// @matches - '//*[@class="stab portability"]' 'crate feature foo-public-mod'
// @matches - '//*[@class="stab portability"]' 'crate feature foo-private-mod'
// @matches - '//*[@class="stab portability"]' 'crate feature foo-fn'
// @matches - '//*[@class="stab portability"]' 'crate feature foo-method'
pub trait Foo {}
#[doc(cfg(feature = "foo-root"))]
impl crate::Foo for usize {}
#[doc(cfg(feature = "foo-public-mod"))]
pub mod public {
impl crate::Foo for u8 {}
}
#[doc(cfg(feature = "foo-private-mod"))]
mod private {
impl crate::Foo for u16 {}
}
#[doc(cfg(feature = "foo-const"))]
const _: () = {
impl crate::Foo for u32 {}
};
#[doc(cfg(feature = "foo-fn"))]
fn __() {
impl crate::Foo for u64 {}
}
#[doc(cfg(feature = "foo-method"))]
impl dyn Foo {
fn __() {
impl crate::Foo for u128 {}
}
}