summaryrefslogtreecommitdiffstats
path: root/tests/ui/macro-quote-test.rs
blob: 2ba61acadcb854d73f30f2de59a93897fb53785d (plain)
1
2
3
4
5
6
7
8
9
10
// 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!();
}