mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-20 18:21:49 +00:00
11 lines
136 B
Rust
11 lines
136 B
Rust
//@ check-pass
|
|
fn is_send<T: Send>(_: T) {}
|
|
fn foo() -> impl Send {
|
|
if false {
|
|
is_send(foo());
|
|
}
|
|
()
|
|
}
|
|
|
|
fn main() {}
|