Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
async-await
/
expansion-in-attrs.rs
blob: af77c3463b5ddb4d8c15ca982eb7f84c44a0fdb5 [
file
] [
log
] [
blame
]
// check-pass
// edition:2018
macro_rules
!
with_doc
{
(
$doc
:
expr
)
=>
{
#[
doc
=
$doc
]
async
fn
f
()
{}
};
}
with_doc
!(
concat
!(
""
));
fn
main
()
{}