mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
258 B
Rust
16 lines
258 B
Rust
//@ compile-flags: -Z mir-opt-level=3
|
|
//@ edition:2018
|
|
//@ build-pass
|
|
|
|
#![feature(async_closure)]
|
|
|
|
use std::future::Future;
|
|
|
|
fn async_closure() -> impl Future<Output = u8> {
|
|
(async move || -> u8 { 42 })()
|
|
}
|
|
|
|
fn main() {
|
|
let _fut = async_closure();
|
|
}
|