mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
13 lines
241 B
Rust
13 lines
241 B
Rust
// force-host
|
|
// no-prefer-dynamic
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
use proc_macro::*;
|
|
|
|
#[proc_macro_derive(same_name, attributes(same_name))]
|
|
pub fn derive_a(_: TokenStream) -> TokenStream {
|
|
TokenStream::new()
|
|
}
|