mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 23:33:27 +00:00
11 lines
122 B
Rust
11 lines
122 B
Rust
// compile-flags: -Cmetadata=aux
|
|
|
|
pub struct Foo;
|
|
|
|
#[doc(hidden)]
|
|
mod bar {
|
|
trait Bar {}
|
|
|
|
impl Bar for ::Foo {}
|
|
}
|