rust/tests/rustdoc/macro-in-async-block.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
158 B
Rust
Raw Normal View History

2020-06-08 06:13:40 +08:00
// Regression issue for rustdoc ICE encountered in PR #72088.
//@ edition:2018
#![feature(decl_macro)]
fn main() {
async {
macro m() {}
};
}