Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-67893.rs
blob: 73cce38c94a0ae6b11a62ce61cd22146112bc8fd [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build: issue_67893.rs
//@ edition:2018
extern
crate issue_67893
;
fn
g
(
_
:
impl
Send
)
{}
fn
main
()
{
g
(
issue_67893
::
run
())
//~^ ERROR `MutexGuard<'_, ()>` cannot be sent between threads safely
}