summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/auxiliary/proc-macro-type-error.rs
blob: d71747f9687ef2da7843146ba2592e4d29ea379c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// force-host
// no-prefer-dynamic
#![crate_type = "proc-macro"]
#![feature(proc_macro_quote)]

extern crate proc_macro;

use proc_macro::{quote, TokenStream};

#[proc_macro_attribute]
pub fn hello(_: TokenStream, _: TokenStream) -> TokenStream {
    quote!(
        fn f(_: &mut i32) {}
        fn g() {
            f(123);
        }
    )
}