]> git.lizzy.rs Git - rust.git/blob - tests/ui/crate-loading/auxiliary/proc-macro.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / ui / crate-loading / auxiliary / proc-macro.rs
1 // force-host
2 // no-prefer-dynamic
3 #![crate_name = "reproduction"]
4 #![crate_type = "proc-macro"]
5
6 extern crate proc_macro;
7 use proc_macro::TokenStream;
8
9 #[proc_macro]
10 pub fn mac(input: TokenStream) -> TokenStream {
11     input
12 }