Sign in
android
/
toolchain
/
rustc
/
3b664ca54b09788037e50e8bf4cb1881bcd6cb8d
/
.
/
src
/
test
/
ui
/
async-await
/
issues
/
issue-67893.rs
blob: f34ce8081ca02e3f967910067a9d0a840f3c360f [
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: `MutexGuard<'_, ()>` cannot be sent between threads safely
}