summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/issue-75734-pp-paren.rs
blob: faa93787d1385416cbc392d9302525b0b936db53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Regression test for issue #75734
// Ensures that we don't lose tokens when pretty-printing would
// normally insert extra parentheses.

// check-pass
// aux-build:test-macros.rs
// compile-flags: -Z span-debug

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

#[macro_use]
extern crate test_macros;

macro_rules! mul_2 {
    ($val:expr) => {
        print_bang!($val * 2);
    };
}


#[print_attr]
fn main() {
    &|_: u8| {};
    mul_2!(1 + 1);
}