]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass-fulldeps/auxiliary/proc_macro_def.rs
New upstream version 1.28.0~beta.14+dfsg1
[rustc.git] / src / test / run-pass-fulldeps / auxiliary / proc_macro_def.rs
CommitLineData
9e0c209e
SL
1// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
041b39d2
XL
11// no-prefer-dynamic
12
13#![crate_type = "proc-macro"]
94b46f34 14#![feature(proc_macro, proc_macro_non_items)]
041b39d2
XL
15
16extern crate proc_macro;
17
83c7162d 18use proc_macro::*;
9e0c209e 19
041b39d2
XL
20#[proc_macro_attribute]
21pub fn attr_tru(_attr: TokenStream, item: TokenStream) -> TokenStream {
22 let name = item.into_iter().skip(1).next().unwrap();
23 quote!(fn $name() -> bool { true })
9e0c209e
SL
24}
25
041b39d2
XL
26#[proc_macro_attribute]
27pub fn attr_identity(_attr: TokenStream, item: TokenStream) -> TokenStream {
cc61c64b 28 quote!($item)
9e0c209e
SL
29}
30
041b39d2
XL
31#[proc_macro]
32pub fn tru(_ts: TokenStream) -> TokenStream {
cc61c64b 33 quote!(true)
9e0c209e
SL
34}
35
041b39d2
XL
36#[proc_macro]
37pub fn ret_tru(_ts: TokenStream) -> TokenStream {
cc61c64b 38 quote!(return true;)
9e0c209e
SL
39}
40
041b39d2
XL
41#[proc_macro]
42pub fn identity(ts: TokenStream) -> TokenStream {
cc61c64b 43 quote!($ts)
9e0c209e 44}