mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +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 {}
|