mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
11 lines
188 B
Rust
11 lines
188 B
Rust
// Test that a macro can emit delimiters with nothing inside - `()`, `{}`
|
|
|
|
//@ run-pass
|
|
//@ proc-macro: hello_macro.rs
|
|
|
|
extern crate hello_macro;
|
|
|
|
fn main() {
|
|
hello_macro::hello!();
|
|
}
|