blob: 3f759837cbf44c730edc644b6ea65efcd1552c37 [file] [log] [blame]
//@ check-pass
fn is_send<T: Send>(_: T) {}
fn foo() -> impl Send {
if false {
is_send(foo());
}
()
}
fn main() {}