Sign in
fuchsia
/
third_party
/
rust
/
600edc948ab5de7a92538bcc2f49cb8d47925e2d
/
.
/
tests
/
rustdoc
/
macro-in-async-block.rs
blob: 43822fb9c52af9a2ebd4e66f93a82fa6e9712d7a [
file
] [
log
] [
blame
]
// Regression issue for rustdoc ICE encountered in PR #72088.
//@ edition:2018
#![
feature
(
decl_macro
)]
fn
main
()
{
async
{
macro m
()
{}
};
}