11 lines
153 B
Rust
11 lines
153 B
Rust
|
// compile-flags: -Ztrait-solver=next
|
||
|
// check-pass
|
||
|
|
||
|
trait Foo {
|
||
|
fn test() -> impl Fn(u32) -> u32 {
|
||
|
|x| x.count_ones()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|