mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 18:43:19 +00:00
11 lines
119 B
Rust
11 lines
119 B
Rust
//@ compile-flags: -Cmetadata=aux
|
|
|
|
pub mod foo {
|
|
|
|
pub trait Foo {}
|
|
pub struct Bar;
|
|
|
|
impl Foo for Bar {}
|
|
|
|
}
|