rust/tests/ui/impl-trait/recursive-auto-trait.rs

11 lines
136 B
Rust
Raw Normal View History

//@ check-pass
2022-01-19 10:35:26 -06:00
fn is_send<T: Send>(_: T) {}
fn foo() -> impl Send {
if false {
is_send(foo());
}
()
}
fn main() {}