blob: 661f427dc0e99929ed01b1ffa0750eaed0b4ad7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ known-bug: rust-lang/rust#128695
//@ edition: 2021
use core::pin::{pin, Pin};
fn main() {
let fut = pin!(async {
let async_drop_fut = pin!(core::future::async_drop(async {}));
(async_drop_fut).await;
});
}
|