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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
135 B
Rust
Raw Normal View History

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