Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
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
()
{}