Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Obj<F> where F: FnMut() -> u32 {
closure: F,
}
fn main() {
let o = Obj { closure: || 42 };
o.closure();
//~^ ERROR no method named `closure` found