Files
rust/compiler/rustc_parse/src/parser
Esteban Küber 7697ce4560 Recover from invalid struct item syntax
Parse unsupported "default field const values":

```rust
struct S {
    field: Type = const_val,
}
```

Recover from small `:` typo and provide suggestion:

```rust
struct S {
    field; Type,
    field2= Type,
}
```
2021-05-11 18:48:57 -07:00
..
2021-04-27 21:15:59 -05:00
2021-03-19 19:45:32 -05:00