mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	 94617802a1
			
		
	
	
		94617802a1
		
			
		
	
	
	
	
		
			
			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,
}
```