18 lines
420 B
Rust
18 lines
420 B
Rust
|
|
//@ compile-flags: --document-hidden-items
|
||
|
|
#![no_std]
|
||
|
|
|
||
|
|
//@ is "$.index[?(@.name=='func')].attrs" '["#[doc(hidden)]"]'
|
||
|
|
#[doc(hidden)]
|
||
|
|
pub fn func() {}
|
||
|
|
|
||
|
|
//@ is "$.index[?(@.name=='Unit')].attrs" '["#[doc(hidden)]"]'
|
||
|
|
#[doc(hidden)]
|
||
|
|
pub struct Unit;
|
||
|
|
|
||
|
|
//@ is "$.index[?(@.name=='hidden')].attrs" '["#[doc(hidden)]"]'
|
||
|
|
#[doc(hidden)]
|
||
|
|
pub mod hidden {
|
||
|
|
//@ is "$.index[?(@.name=='Inner')].attrs" '[]'
|
||
|
|
pub struct Inner;
|
||
|
|
}
|