summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/struct-fields-hints.rs
blob: 08df0930e4d13cdbdcd18874f1471459a573f5ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct A {
    foo : i32,
    car : i32,
    barr : i32
}

fn main() {
    let a = A {
        foo : 5,
        bar : 42,
        //~^ ERROR struct `A` has no field named `bar`
    };
}