about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-05-31 07:07:02 +0200
committerGitHub <noreply@github.com>2023-05-31 07:07:02 +0200
commit1d643e16c2878def86dba27a8cf736ace962cb5b (patch)
treef12e11c45bbc6efa705144221d5d09c587d730ae /compiler/rustc_codegen_llvm/src
parent88160ab94cfbb15447d4c5715dd84552173ac330 (diff)
parent9906504c64a5adfbce3b6bb6a467e4d2d6f39af8 (diff)
downloadrust-1d643e16c2878def86dba27a8cf736ace962cb5b.tar.gz
rust-1d643e16c2878def86dba27a8cf736ace962cb5b.zip
Rollup merge of #112108 - GuillaumeGomez:reexport-doc-hidden-private, r=notriddle
Fix re-export of doc hidden item inside private item not displayed

This PR fixes this bug:

```rust
mod private_module {
    #[doc(hidden)]
    pub struct Public;
}

pub use crate::private_module::Public as Foo;
```

`pub use crate::private_module::Public as Foo;` should be visible in the generated doc (and not inlined!) but currently isn't. This PR fixes it.

r? `@notriddle`
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
0 files changed, 0 insertions, 0 deletions