mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
268 B
Rust
18 lines
268 B
Rust
//@ check-pass
|
|
#![allow(unused_must_use)]
|
|
#![feature(decl_macro)]
|
|
|
|
pub macro create_struct($a:ident) {
|
|
struct $a;
|
|
impl Clone for $a {
|
|
fn clone(&self) -> Self {
|
|
$a
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
create_struct!(Test);
|
|
Test.clone();
|
|
}
|