rust/tests/ui/proc-macro/non-root.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
339 B
Rust
Raw Normal View History

// force-host
2018-07-12 22:59:41 +00:00
// 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
}