2017-01-15 18:54:36 -06:00
|
|
|
// Test that a macro can emit delimiters with nothing inside - `()`, `{}`
|
|
|
|
|
|
|
|
// aux-build:hello_macro.rs
|
|
|
|
|
2018-07-05 20:09:35 -05:00
|
|
|
#![feature(proc_macro_hygiene)]
|
2017-03-17 18:41:09 -05:00
|
|
|
|
|
|
|
extern crate hello_macro;
|
2017-01-15 18:54:36 -06:00
|
|
|
|
|
|
|
fn main() {
|
2017-03-17 18:41:09 -05:00
|
|
|
hello_macro::hello!();
|
2017-01-15 18:54:36 -06:00
|
|
|
}
|