2025-07-09 01:32:23 +00:00
|
|
|
//@ compile-flags: --document-hidden-items
|
|
|
|
|
#![no_std]
|
|
|
|
|
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='func')].attrs" '[{"other": "#[doc(hidden)]"}]'
|
2025-07-09 01:32:23 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
|
pub fn func() {}
|
|
|
|
|
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='Unit')].attrs" '[{"other": "#[doc(hidden)]"}]'
|
2025-07-09 01:32:23 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
|
pub struct Unit;
|
|
|
|
|
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='hidden')].attrs" '[{"other": "#[doc(hidden)]"}]'
|
2025-07-09 01:32:23 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
|
pub mod hidden {
|
|
|
|
|
//@ is "$.index[?(@.name=='Inner')].attrs" '[]'
|
|
|
|
|
pub struct Inner;
|
|
|
|
|
}
|