rust/tests/ui/macros/macro-quote-test.rs
2024-02-16 20:02:50 +00:00

11 lines
186 B
Rust

// Test that a macro can emit delimiters with nothing inside - `()`, `{}`
//@ run-pass
//@ aux-build:hello_macro.rs
extern crate hello_macro;
fn main() {
hello_macro::hello!();
}