mirror of
https://git.proxmox.com/git/rustc
synced 2026-02-01 19:58:02 +00:00
11 lines
208 B
Rust
11 lines
208 B
Rust
//@ compile-flags: --document-private-items --document-hidden-items
|
|
|
|
pub trait TheTrait {}
|
|
|
|
#[doc(hidden)]
|
|
struct Value {}
|
|
|
|
//@ has '$.index[*][?(@.docs=="THE IMPL")]'
|
|
/// THE IMPL
|
|
impl TheTrait for Value {}
|