mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-10 22:13:27 +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 {}
|