Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
128695.rs
blob: 661f427dc0e99929ed01b1ffa0750eaed0b4ad7f [
file
] [
log
] [
blame
] [
edit
]
//@ 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
;
});
}