blob: 37cc3f8cc25b071b4d587951608e7e8c4a9e121c [file] [log] [blame] [edit]
//@ check-pass
#![allow(opaque_hidden_inferred_bound)]
#![allow(dead_code)]
trait Duh {}
impl Duh for i32 {}
trait Trait {
type Assoc: Duh;
}
impl<R: Duh, F: FnMut() -> R> Trait for F {
type Assoc = R;
}
fn foo() -> impl Trait<Assoc = impl Send> {
|| 42
}
fn main() {}