2018-11-24 07:34:13 -06:00
|
|
|
// force-host
|
2018-07-12 05:24:59 -05:00
|
|
|
// no-prefer-dynamic
|
|
|
|
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
|
|
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::*;
|
|
|
|
|
|
|
|
#[proc_macro]
|
|
|
|
pub fn my_macro(input: TokenStream) -> TokenStream {
|
|
|
|
input
|
|
|
|
}
|
|
|
|
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn my_macro_attr(input: TokenStream, _: TokenStream) -> TokenStream {
|
|
|
|
input
|
|
|
|
}
|
|
|
|
|
|
|
|
#[proc_macro_derive(MyTrait)]
|
|
|
|
pub fn my_macro_derive(input: TokenStream) -> TokenStream {
|
|
|
|
input
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_bang1() {
|
|
|
|
my_macro!(); //~ ERROR can't use a procedural macro from the same crate that defines it
|
|
|
|
}
|
|
|
|
fn check_bang2() {
|
2019-07-02 17:44:04 -05:00
|
|
|
my_macro_attr!(); //~ ERROR cannot find macro `my_macro_attr!` in this scope
|
2018-07-12 05:24:59 -05:00
|
|
|
}
|
|
|
|
fn check_bang3() {
|
2019-07-02 17:44:04 -05:00
|
|
|
MyTrait!(); //~ ERROR cannot find macro `MyTrait!` in this scope
|
2018-07-12 05:24:59 -05:00
|
|
|
}
|
|
|
|
|
2019-07-02 17:44:04 -05:00
|
|
|
#[my_macro] //~ ERROR attribute `my_macro` is currently unknown
|
2018-07-12 05:24:59 -05:00
|
|
|
fn check_attr1() {}
|
|
|
|
#[my_macro_attr] //~ ERROR can't use a procedural macro from the same crate that defines it
|
|
|
|
fn check_attr2() {}
|
|
|
|
#[MyTrait] //~ ERROR can't use a procedural macro from the same crate that defines it
|
2019-07-02 17:44:04 -05:00
|
|
|
//~| ERROR `MyTrait` is a derive macro
|
2018-07-12 05:24:59 -05:00
|
|
|
fn check_attr3() {}
|
|
|
|
|
2019-07-02 17:44:04 -05:00
|
|
|
#[derive(my_macro)] //~ ERROR cannot find derive macro `my_macro` in this scope
|
2018-07-12 05:24:59 -05:00
|
|
|
struct CheckDerive1;
|
|
|
|
#[derive(my_macro_attr)] //~ ERROR can't use a procedural macro from the same crate that defines it
|
2019-07-02 17:44:04 -05:00
|
|
|
//~| ERROR macro `my_macro_attr` may not be used for derive attributes
|
2018-07-12 05:24:59 -05:00
|
|
|
struct CheckDerive2;
|
|
|
|
#[derive(MyTrait)] //~ ERROR can't use a procedural macro from the same crate that defines it
|
|
|
|
struct CheckDerive3;
|