summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/removed-syntax-field-let-2.rs
blob: 7ff91b476aeb59b5c428a327bc1a49dd2e98c4ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct Foo {
    let x: i32,
    //~^ ERROR expected identifier, found keyword
    let y: i32,
    //~^ ERROR expected identifier, found keyword
}

fn main() {
    let _ = Foo {
        //~^ ERROR missing fields `x` and `y` in initializer of `Foo`
    };
}