Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
macros
/
auxiliary
/
define-macro.rs
blob: 4956907c55ea906fa5343305f5e7d3a253f17953 [
file
] [
log
] [
blame
]
#[
macro_export
]
macro_rules
!
define_macro
{
(
$i
:
ident
)
=>
{
macro_rules
!
$i
{
()
=>
{}
}
}
}