diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-08-25 16:42:51 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2022-08-25 20:12:53 +0200 |
| commit | 2ed945407f050385b6d4c34580f9b59db02a1b68 (patch) | |
| tree | 93f922a06e188d996869f60a9cf0b168d92bbe0a /src/test/rustdoc | |
| parent | 01d64f5e3eb309a41a40fbbaf5d6bd9d20f86bee (diff) | |
| download | rust-2ed945407f050385b6d4c34580f9b59db02a1b68.tar.gz rust-2ed945407f050385b6d4c34580f9b59db02a1b68.zip | |
Add test for missing cfg propagation for reexport
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/cfg_doc_reexport.rs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/test/rustdoc/cfg_doc_reexport.rs b/src/test/rustdoc/cfg_doc_reexport.rs new file mode 100644 index 00000000000..addb6709db1 --- /dev/null +++ b/src/test/rustdoc/cfg_doc_reexport.rs @@ -0,0 +1,33 @@ +#![feature(doc_cfg)] +#![feature(no_core)] + +#![crate_name = "foo"] +#![no_core] + +// @has 'foo/index.html' +// @has - '//*[@class="item-left module-item"]/*[@class="stab portability"]' 'foobar' +// @has - '//*[@class="item-left module-item"]/*[@class="stab portability"]' 'bar' + +#[doc(cfg(feature = "foobar"))] +mod imp_priv { + // @has 'foo/struct.BarPriv.html' + // @has - '//*[@id="main-content"]/*[@class="item-info"]/*[@class="stab portability"]' \ + // 'Available on crate feature foobar only.' + pub struct BarPriv {} + impl BarPriv { + pub fn test() {} + } +} +#[doc(cfg(feature = "foobar"))] +pub use crate::imp_priv::*; + +pub mod bar { + // @has 'foo/bar/struct.Bar.html' + // @has - '//*[@id="main-content"]/*[@class="item-info"]/*[@class="stab portability"]' \ + // 'Available on crate feature bar only.' + #[doc(cfg(feature = "bar"))] + pub struct Bar; +} + +#[doc(cfg(feature = "bar"))] +pub use bar::Bar; |
