Files
rust/src/test/ui/parser/removed-syntax-field-let.rs
Esteban Küber d6ea6b972d fix tidy
2019-05-31 13:50:04 -07:00

8 lines
143 B
Rust

struct S {
let foo: (),
//~^ ERROR expected identifier, found keyword `let`
//~^^ ERROR expected `:`, found `foo`
}
fn main() {}