Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
issue-68058.rs
blob: 0e6e445fd1082e5a672f4c521b682450b148e4a6 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
macro_rules
!
foo
{
(
$doc
:
expr
)
=>
{
fn
f
()
{
#[
doc
=
$doc
]
()
}
};
}
foo
!(
"doc"
);
fn
main
()
{}