blob: deae1c9376a3e1be79605fa992f41408c7965834 [file] [log] [blame]
//@ edition: 2021
fn produce() -> impl AsyncFnMut() -> &'static str {
async || ""
}
fn main() {
let x: i32 = produce();
//~^ ERROR mismatched types
}