forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
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 rust-lang#101279 - GuillaumeGomez:doc_auto_cfg_nested…
…_impl, r=notriddle Fix doc_auto_cfg for impl blocks in different modules with different `cfg` Fixes rust-lang#101129. Just like reexports, impl blocks don't necessarily share the same "space" as the item they implement so we need to merge attributes from its parents as well. r? `@notriddle`
- Loading branch information
Showing
2 changed files
with
64 additions
and
20 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Regression test for <https://github.com/rust-lang/rust/issues/101129>. | ||
|
||
#![feature(doc_auto_cfg)] | ||
#![crate_type = "lib"] | ||
#![crate_name = "foo"] | ||
|
||
pub struct S; | ||
pub trait MyTrait1 {} | ||
pub trait MyTrait2 {} | ||
|
||
// @has foo/struct.S.html | ||
// @has - '//*[@id="impl-MyTrait1-for-S"]//*[@class="stab portability"]' \ | ||
// 'Available on non-crate feature coolstuff only.' | ||
#[cfg(not(feature = "coolstuff"))] | ||
impl MyTrait1 for S {} | ||
|
||
#[cfg(not(feature = "coolstuff"))] | ||
mod submod { | ||
use crate::{S, MyTrait2}; | ||
// This impl should also have the `not(feature = "coolstuff")`. | ||
// @has - '//*[@id="impl-MyTrait2-for-S"]//*[@class="stab portability"]' \ | ||
// 'Available on non-crate feature coolstuff only.' | ||
impl MyTrait2 for S {} | ||
} |