9 lines
157 B
Rust
9 lines
157 B
Rust
//@ known-bug: #135124
|
|
trait A {
|
|
fn y(&self)
|
|
{
|
|
fn call() -> impl Sized {}
|
|
self.fold(call());
|
|
}
|
|
fn fold(&self, &self._) {}
|
|
}
|