-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #120548 - GuillaumeGomez:glob-reexport-cfg-merge, r=G…
…uillaumeGomez rustdoc: Fix handling of doc_auto_cfg feature for cfg attributes on glob reexport This is a follow-up of #120501 and a part of #120487. r? `@notriddle`
- Loading branch information
Showing
3 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
tests/rustdoc/glob-reexport-attribute-merge-doc-auto-cfg.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; |