1 2 3 4 5 6 7 8 9
struct Obj<F> where F: FnMut() -> u32 { closure: F, } fn main() { let o = Obj { closure: || 42 }; o.closure(); //~^ ERROR no method named `closure` found }