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