]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/macro-in-async-block.rs
Auto merge of #107778 - weihanglo:update-cargo, r=weihanglo
[rust.git] / tests / rustdoc / macro-in-async-block.rs
1 // Regression issue for rustdoc ICE encountered in PR #72088.
2 // edition:2018
3 #![feature(decl_macro)]
4
5 fn main() {
6     async {
7         macro m() {}
8     };
9 }