blob: d00e8edf28b4b60e2f6777673177f08d5ba2d5b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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!();
}
|