rust/src/test/run-pass/macro-quote-test.rs
2018-12-25 21:08:33 -07:00

12 lines
205 B
Rust

// 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!();
}