]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macro-quote-test.rs
Merge commit '98e2b9f25b6db4b2680a3d388456d9f95cb28344' into clippyup
[rust.git] / src / test / ui / macro-quote-test.rs
1 // Test that a macro can emit delimiters with nothing inside - `()`, `{}`
2
3 // run-pass
4 // aux-build:hello_macro.rs
5
6 extern crate hello_macro;
7
8 fn main() {
9     hello_macro::hello!();
10 }