Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
macros
/
macro-quote-test.rs
blob: dd7b10f6322ac81cae542fc429ea5eb9158156ee [
file
] [
log
] [
blame
]
// 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
!();
}