blob: 51c077ba03fb8ad9d26bde8b8c632a9d535117fb (
plain)
1
2
3
4
5
6
7
8
9
10
|
//@ edition: 2021
//@ check-pass
// Make sure we don't ICE if an async closure has a macro body.
// This happened because we were calling walk instead of visit
// in the def collector, oops!
fn main() {
let _ = async || println!();
}
|