mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 12:17:37 +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 {}
|