2021-03-12 13:40:23 -06:00
|
|
|
error: struct constructor field order is inconsistent with struct definition field order
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/inconsistent_struct_constructor.rs:33:9
|
2021-02-20 07:52:56 -06:00
|
|
|
|
|
|
|
|
LL | Foo { y, x, z };
|
|
|
|
| ^^^^^^^^^^^^^^^ help: try: `Foo { x, y, z }`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::inconsistent-struct-constructor` implied by `-D warnings`
|
|
|
|
|
2021-03-12 13:40:23 -06:00
|
|
|
error: struct constructor field order is inconsistent with struct definition field order
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/inconsistent_struct_constructor.rs:55:9
|
2021-02-20 07:52:56 -06:00
|
|
|
|
|
|
|
|
LL | / Foo {
|
|
|
|
LL | | z,
|
|
|
|
LL | | x,
|
|
|
|
LL | | ..Default::default()
|
|
|
|
LL | | };
|
|
|
|
| |_________^ help: try: `Foo { x, z, ..Default::default() }`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|