2018-02-07 19:35:35 -08:00
|
|
|
error[E0063]: missing field `x` in initializer of `SingleFoo`
|
2021-04-03 13:05:11 +02:00
|
|
|
--> $DIR/E0063.rs:30:13
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let w = SingleFoo { };
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^^^^^^^^^ missing `x`
|
|
|
|
|
2021-02-20 18:32:02 +01:00
|
|
|
error[E0063]: missing fields `y` and `z` in initializer of `PluralFoo`
|
2021-04-03 13:05:11 +02:00
|
|
|
--> $DIR/E0063.rs:32:13
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let x = PluralFoo {x: 1};
|
2021-02-20 18:32:02 +01:00
|
|
|
| ^^^^^^^^^ missing `y` and `z`
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error[E0063]: missing fields `a`, `b`, `y` and 1 other field in initializer of `TruncatedFoo`
|
2021-04-03 13:05:11 +02:00
|
|
|
--> $DIR/E0063.rs:34:13
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let y = TruncatedFoo{x:1};
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^^^^^^^^^^^^ missing `a`, `b`, `y` and 1 other field
|
|
|
|
|
|
|
|
error[E0063]: missing fields `a`, `b`, `c` and 2 other fields in initializer of `TruncatedPluralFoo`
|
2021-04-03 13:05:11 +02:00
|
|
|
--> $DIR/E0063.rs:36:13
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let z = TruncatedPluralFoo{x:1};
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ missing `a`, `b`, `c` and 2 other fields
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0063`.
|