mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-29 20:30:30 +00:00
9 lines
113 B
Rust
9 lines
113 B
Rust
// compile-flags: -Cmetadata=aux
|
|
|
|
pub trait Foo {
|
|
#[doc(hidden)]
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
impl Foo for i32 {}
|