mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 23:33:27 +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;
|
|
}
|