mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
11 lines
164 B
Rust
11 lines
164 B
Rust
![]() |
//@ edition: 2021
|
||
|
|
||
|
fn produce() -> impl AsyncFnMut() -> &'static str {
|
||
|
async || ""
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let x: i32 = produce();
|
||
|
//~^ ERROR mismatched types
|
||
|
}
|