]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/macro-quote-test.rs
Auto merge of #61817 - eddyb:begone-gcx-attempt-2, r=oli-obk
[rust.git] / src / test / run-pass / macro-quote-test.rs
1 // Test that a macro can emit delimiters with nothing inside - `()`, `{}`
2
3 // aux-build:hello_macro.rs
4
5 #![feature(proc_macro_hygiene)]
6
7 extern crate hello_macro;
8
9 fn main() {
10     hello_macro::hello!();
11 }