Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-67893.rs
blob: d73772e5fa0d9b3616287e11efad261464f9dfbf [
file
] [
log
] [
blame
]
// aux-build: issue_67893.rs
// edition:2018
extern
crate issue_67893
;
fn
g
(
_
:
impl
Send
)
{}
fn
main
()
{
g
(
issue_67893
::
run
())
//~^ ERROR future cannot be sent between threads safely
}