summaryrefslogtreecommitdiffstats
path: root/tests/ui/proc-macro/macro-use-bang.rs
blob: e3174fd446a1c0f32bac68ec704cdb8209bd02ba (plain)
1
2
3
4
5
6
7
8
9
// check-pass
// aux-build:test-macros.rs

#[macro_use]
extern crate test_macros;

fn main() {
    identity!(println!("Hello, world!"));
}