summary refs log tree commit diff
path: root/src/test/ui/parser/removed-syntax-field-let.rs
blob: 9fe4a148a56aa0adb1001a32c45ac9b3d4467b06 (plain)
1
2
3
4
5
6
7
struct S {
    let foo: (),
    //~^  ERROR expected identifier, found keyword `let`
    //~^^ ERROR expected `:`, found `foo`
}

fn main() {}