rustc/tests/ui/confuse-field-and-method/issue-18343.rs
2023-08-02 10:33:26 +02:00

10 lines
173 B
Rust

struct Obj<F> where F: FnMut() -> u32 {
closure: F,
}
fn main() {
let o = Obj { closure: || 42 };
o.closure();
//~^ ERROR no method named `closure` found
}