blob: 9b313d3e9b2787a4d9547a5b589b93f98e4980f9 [file] [log] [blame]
trait A {
fn a(&self) {
|| self.b()
//~^ ERROR no method named `b` found for type `&Self` in the current scope
}
}
fn main() {}