summary refs log tree commit diff
path: root/src/test/ui/macro-quote-test.rs
blob: 7815b8e6df1ee045e5e6db201336edb91f349ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
// Test that a macro can emit delimiters with nothing inside - `()`, `{}`

// aux-build:hello_macro.rs

#![feature(proc_macro_hygiene)]

extern crate hello_macro;

fn main() {
    hello_macro::hello!();
}