summaryrefslogtreecommitdiffstats
path: root/tests/ui/confuse-field-and-method/issue-18343.rs
blob: bc2d73fae11b6f7344062ab83d25dfa8c15d19e7 (plain)
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
}