mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-08 01:28:18 +03:00
0ac0285c3f
Reorder `ast::ItemKind::{Struct,Enum,Union}` fields.
So they match the order of the parts in the source code, e.g.:
```
struct Foo<T, U> { t: T, u: U }
<-><----> <------------>
/ | \
ident generics variant_data
```
r? `@fee1-dead`