]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macro-quote-test.rs
Do not use Cortex-M0 since Qemu is too old
[rust.git] / src / test / ui / macro-quote-test.rs
1 // run-pass
2 // Test that a macro can emit delimiters with nothing inside - `()`, `{}`
3
4 // aux-build:hello_macro.rs
5
6 #![feature(proc_macro_hygiene)]
7
8 extern crate hello_macro;
9
10 fn main() {
11     hello_macro::hello!();
12 }