Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
macros
/
macro-quote-test.rs
blob: a4b667b4af6fbf482b674d9215923d085b8bb981 [
file
] [
log
] [
blame
]
// 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
!();
}