mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00
13 lines
159 B
Rust
13 lines
159 B
Rust
pub struct Bar;
|
|
|
|
impl Bar {
|
|
pub fn bar(_: u8) -> hidden::Hidden {
|
|
hidden::Hidden
|
|
}
|
|
}
|
|
|
|
#[doc(hidden)]
|
|
pub mod hidden {
|
|
pub struct Hidden;
|
|
}
|