summary refs log tree commit diff
path: root/src/test/ui/proc-macro/simple-tuple.rs
blob: c94c5877e2240560bdfb240e229326d1c43ac60e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// check-pass
// compile-flags: -Z span-debug --error-format human
// aux-build:test-macros.rs
// edition:2018

#![feature(proc_macro_hygiene)]

#![no_std] // Don't load unnecessary hygiene information from std
extern crate std;

#[macro_use]
extern crate test_macros;

fn main() {
    #[print_target_and_args(my_arg)] (
        #![cfg_attr(not(FALSE), allow(unused))]
        1, 2, 3
    );
}