//@ known-bug: #131758 #![feature(unboxed_closures)] trait Foo {} impl> Foo for T {} fn baz(_: T) {} fn main() { baz(|x| ()); }