mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
24 lines
329 B
Rust
24 lines
329 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
macro_rules! foo {
|
|
(#[$attr:meta] $x:ident) => {
|
|
#[$attr]
|
|
struct $x {
|
|
x: u32
|
|
}
|
|
}
|
|
}
|
|
|
|
foo! { #[derive(PartialEq, Eq)] Foo }
|
|
|
|
const FOO: Foo = Foo { x: 0 };
|
|
|
|
fn main() {
|
|
let y = Foo { x: 1 };
|
|
match y {
|
|
FOO => { }
|
|
_ => { }
|
|
}
|
|
}
|