In the example below, the error message could at least mention that `type` is keyword, or be changed more radically: https://github.com/rust-lang/rust/issues/15358#issuecomment-47851132 Previously: **Cannot declare a field 'type' on struct** Declaring for example the following struct: ``` rust struct Serie { metric: String, type: String } ``` Yields the following error: ``` error: found `type` in ident position type: String ``` Is this intended?