// run-pass // Test an issue where we reported ambiguity between the where-clause // and the blanket impl. The only important thing is that compilation // succeeds here. Issue #22110. // pretty-expanded FIXME #23616 #![allow(dead_code)] trait Foo { fn foo(&self, a: A); } impl Foo for F { fn foo(&self, _: A) { } } fn baz Foo<(&'a A,)>>(_: F) { } fn components(t: fn(&A)) where fn(&A) : for<'a> Foo<(&'a A,)>, { baz(t) } fn main() { }