about summary refs log tree commit diff
path: root/tests/ui/proc-macro/test-same-crate.rs
blob: 3b3565c25b27981c8da9af5fbd9533eb6d274b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ compile-flags: --test
#![crate_type = "proc-macro"]

extern crate proc_macro;
use proc_macro::TokenStream;

#[proc_macro]
pub fn mac(input: TokenStream) -> TokenStream { loop {} }

#[cfg(test)]
mod test {
    #[test]
    fn t() { crate::mac!(A) }
    //~^ ERROR can't use a procedural macro from the same crate that defines it
    //~| HELP you can define integration tests in a directory named `tests`
}