rust/src/test/ui/error-codes/E0063.stderr

28 lines
944 B
Plaintext
Raw Normal View History

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