mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-16 07:49:17 +00:00
13 lines
227 B
Rust
13 lines
227 B
Rust
// force-host
|
|
// no-prefer-dynamic
|
|
#![crate_name = "reproduction"]
|
|
#![crate_type = "proc-macro"]
|
|
|
|
extern crate proc_macro;
|
|
use proc_macro::TokenStream;
|
|
|
|
#[proc_macro]
|
|
pub fn mac(input: TokenStream) -> TokenStream {
|
|
input
|
|
}
|