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 {}
|