summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/struct-fields-shorthand-unresolved.rs
blob: caad149160c89271dc105460ae2b88ab11702b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct Foo {
    x: i32,
    y: i32
}

fn main() {
    let x = 0;
    let foo = Foo {
        x,
        y //~ ERROR cannot find value `y` in this scope
    };
}