blob: 7815b8e6df1ee045e5e6db201336edb91f349ff7 [file] [log] [blame]
// 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!();
}