Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
async-await
/
await-keyword
/
post_expansion_error.rs
blob: b4c899b0d0295b6b77b0fd45a5b0640dd51ad754 [
file
] [
log
] [
blame
]
// edition:2018
macro_rules
!
r
#
await
{
()
=>
{
println
!(
"Hello, world!"
)
}
}
fn
main
()
{
await
!()
//~^ ERROR expected expression, found `)`
}