summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-36798_unknown_field.rs
blob: ef9744b4af87921c5b8ac258738473223808e9fc (plain)
1
2
3
4
5
6
7
8
struct Foo {
    bar: u8
}

fn main() {
    let f = Foo { bar: 22 };
    f.zz; //~ ERROR no field
}