mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
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() {}
|