2017-01-16 13:54:36 +13:00
|
|
|
// Test that a macro can emit delimiters with nothing inside - `()`, `{}`
|
|
|
|
|
2020-02-01 01:02:31 +03:00
|
|
|
// run-pass
|
2017-01-16 13:54:36 +13:00
|
|
|
// aux-build:hello_macro.rs
|
|
|
|
|
2017-03-17 23:41:09 +00:00
|
|
|
extern crate hello_macro;
|
2017-01-16 13:54:36 +13:00
|
|
|
|
|
|
|
fn main() {
|
2017-03-17 23:41:09 +00:00
|
|
|
hello_macro::hello!();
|
2017-01-16 13:54:36 +13:00
|
|
|
}
|