diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-02-01 11:47:02 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-02-01 11:47:02 +0100 |
| commit | 48c4272718bde21e2fcb1969234ff0b2bc7bb9da (patch) | |
| tree | 49e28f9c56b99912946d29599d6b55ff20151646 | |
| parent | ea4a36b47492aa28bce16e23b9940d3e5704c39d (diff) | |
| download | rust-48c4272718bde21e2fcb1969234ff0b2bc7bb9da.tar.gz rust-48c4272718bde21e2fcb1969234ff0b2bc7bb9da.zip | |
Add regression test for `doc_auto_cfg` feature handling with glob reexports
| -rw-r--r-- | tests/rustdoc/glob-reexport-attribute-merge-doc-auto-cfg.rs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/rustdoc/glob-reexport-attribute-merge-doc-auto-cfg.rs b/tests/rustdoc/glob-reexport-attribute-merge-doc-auto-cfg.rs new file mode 100644 index 00000000000..3e3e602eb1b --- /dev/null +++ b/tests/rustdoc/glob-reexport-attribute-merge-doc-auto-cfg.rs @@ -0,0 +1,29 @@ +// This test ensures that non-glob reexports don't get their attributes merge with +// the reexported item whereas glob reexports do with the `doc_auto_cfg` feature. + +#![crate_name = "foo"] +#![feature(doc_auto_cfg)] + +// @has 'foo/index.html' +// There are two items. +// @count - '//*[@class="item-table"]//div[@class="item-name"]' 2 +// Only one of them should have an attribute. +// @count - '//*[@class="item-table"]//div[@class="item-name"]/*[@class="stab portability"]' 1 + +mod a { + #[cfg(not(feature = "a"))] + pub struct Test1; +} + +mod b { + #[cfg(not(feature = "a"))] + pub struct Test2; +} + +// @has 'foo/struct.Test1.html' +// @count - '//*[@id="main-content"]/*[@class="item-info"]' 1 +// @has - '//*[@id="main-content"]/*[@class="item-info"]' 'Available on non-crate feature a only.' +pub use a::*; +// @has 'foo/struct.Test2.html' +// @count - '//*[@id="main-content"]/*[@class="item-info"]' 0 +pub use b::Test2; |
