rustc/tests/ui/block-result/issue-3563.rs
2023-08-02 10:33:26 +02:00

8 lines
114 B
Rust

trait A {
fn a(&self) {
|| self.b()
//~^ ERROR no method named `b` found
}
}
fn main() {}