blob: 51f62bc2312b1f17df63938a3ad7e8bcda8c0866 [file] [log] [blame]
// compile-flags: -Ztrait-solver=next
// check-pass
trait Foo {
fn test() -> impl Fn(u32) -> u32 {
|x| x.count_ones()
}
}
fn main() {}