about summary refs log tree commit diff
path: root/tests/rustdoc/macro/macro-in-async-block.rs
blob: 43822fb9c52af9a2ebd4e66f93a82fa6e9712d7a (plain)
1
2
3
4
5
6
7
8
9
// Regression issue for rustdoc ICE encountered in PR #72088.
//@ edition:2018
#![feature(decl_macro)]

fn main() {
    async {
        macro m() {}
    };
}