Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
refs/heads/upstream/master
/
.
/
tests
/
crashes
/
137916.rs
blob: b25e7b200d959e78ffd51697ff9ac5667a5e5cf3 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #137916
//@ edition: 2021
use
std
::
ptr
::
null
;
async
fn
a
()
->
Box
<
dyn
Send
>
{
Box
::
new
(
async
{
let
non_send
=
null
::<()>();
&
non_send
;
async
{}.
await
})
}
fn
main
()
{}