Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
refs/heads/revert-82057-cstr
/
.
/
src
/
test
/
rustdoc
/
macro-in-async-block.rs
blob: b4aaacf7b3d40ebf7a373ebd3dfe20507a5a9af1 [
file
] [
log
] [
blame
] [
edit
]
// Regression issue for rustdoc ICE encountered in PR #72088.
// edition:2018
#![
feature
(
decl_macro
)]
fn
main
()
{
async
{
macro m
()
{}
};
}