mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
12 lines
124 B
Rust
12 lines
124 B
Rust
// check-pass
|
|
macro_rules! m {
|
|
($i:meta) => {
|
|
#[derive($i)]
|
|
struct S;
|
|
}
|
|
}
|
|
|
|
m!(Clone);
|
|
|
|
fn main() {}
|