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() {}
|