mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:21:32 +00:00
18 lines
252 B
Rust
18 lines
252 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
#[macro_export]
|
|
macro_rules! state {
|
|
( $( $name:ident : $field:ty )* ) => (
|
|
#[derive(Default)]
|
|
struct State {
|
|
$($name : $field),*
|
|
}
|
|
)
|
|
}
|
|
|
|
state! { x: i64 }
|
|
|
|
pub fn main() {
|
|
}
|