rust/src/test/ui/macro-quote-test.rs
2019-07-27 18:56:16 +03:00

13 lines
217 B
Rust

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