2017-01-15 18:54:36 -06:00
|
|
|
// Test that a macro can emit delimiters with nothing inside - `()`, `{}`
|
|
|
|
|
2020-01-31 16:02:31 -06:00
|
|
|
// run-pass
|
2017-01-15 18:54:36 -06:00
|
|
|
// aux-build:hello_macro.rs
|
|
|
|
|
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
|
|
|
}
|