rust/src/test/ui/proc-macro/non-root.rs
2018-12-25 21:08:33 -07:00

16 lines
339 B
Rust

// 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
}