mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-23 20:52:01 +00:00
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,
}
```