rust/tests/ui/macro-quote-test.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
184 B
Rust
Raw Normal View History

// Test that a macro can emit delimiters with nothing inside - `()`, `{}`
// run-pass
// aux-build:hello_macro.rs
extern crate hello_macro;
fn main() {
hello_macro::hello!();
}