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