2020-04-15 20:09:59 -05:00
|
|
|
// aux-build: issue_67893.rs
|
|
|
|
// edition:2018
|
|
|
|
|
|
|
|
extern crate issue_67893;
|
|
|
|
|
|
|
|
fn g(_: impl Send) {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
g(issue_67893::run())
|
2022-03-05 04:04:32 -06:00
|
|
|
//~^ ERROR future cannot be sent between threads safely
|
2020-04-15 20:09:59 -05:00
|
|
|
}
|