Sign in
fuchsia
/
third_party
/
rust
/
23f762d3b15eb897b1fd3199e8c075393b067b68
/
.
/
tests
/
crashes
/
128695.rs
blob: 661f427dc0e99929ed01b1ffa0750eaed0b4ad7f [
file
] [
log
] [
blame
]
//@ 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
;
});
}