mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 18:57:19 +00:00
15 lines
245 B
Rust
15 lines
245 B
Rust
// Regression test for <https://github.com/rust-lang/rust/issues/145151>.
|
|
|
|
//@ edition: 2024
|
|
//@ check-pass
|
|
|
|
async fn process<'a>() {
|
|
Box::pin(process()).await;
|
|
}
|
|
|
|
fn require_send(_: impl Send) {}
|
|
|
|
fn main() {
|
|
require_send(process());
|
|
}
|