mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +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() {
|
|
}
|