rust/src/test/run-pass/macro-quote-test.rs

12 lines
205 B
Rust
Raw Normal View History

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