2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build: issue_67893.rs
|
|
|
|
|
//@ edition:2018
|
2020-04-16 10:09:59 +09:00
|
|
|
|
|
|
|
|
extern crate issue_67893;
|
|
|
|
|
|
|
|
|
|
fn g(_: impl Send) {}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
g(issue_67893::run())
|
2023-06-24 10:02:54 +00:00
|
|
|
//~^ ERROR `MutexGuard<'_, ()>` cannot be sent between threads safely
|
2020-04-16 10:09:59 +09:00
|
|
|
}
|