blob: a7c4ac00a448114532eef48feb5bcae8b03d856b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// force-host
// no-prefer-dynamic
#![crate_type = "proc-macro"]
extern crate proc_macro;
use proc_macro::*;
fn foo(arg: TokenStream) -> TokenStream {
#[proc_macro]
pub fn foo(arg: TokenStream) -> TokenStream { arg }
//~^ ERROR functions tagged with `#[proc_macro]` must currently reside in the root of the crate
arg
}
|