mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 13:37:37 +00:00

``` error: `A` has no fields, `..` needs at least one default field in the struct definition --> $DIR/empty-struct.rs:16:17 | LL | let _ = A { .. }; | - ^^ | | | this type has no fields ```
27 lines
759 B
Plaintext
27 lines
759 B
Plaintext
error: `A` has no fields, `..` needs at least one default field in the struct definition
|
|
--> $DIR/empty-struct.rs:16:17
|
|
|
|
|
LL | let _ = A { .. };
|
|
| - ^^
|
|
| |
|
|
| this type has no fields
|
|
|
|
error: `B` has no fields, `..` needs at least one default field in the struct definition
|
|
--> $DIR/empty-struct.rs:17:17
|
|
|
|
|
LL | let _ = B { .. };
|
|
| - ^^
|
|
| |
|
|
| this type has no fields
|
|
|
|
error: `C` has no fields, `..` needs at least one default field in the struct definition
|
|
--> $DIR/empty-struct.rs:18:17
|
|
|
|
|
LL | let _ = C { .. };
|
|
| - ^^
|
|
| |
|
|
| this type has no fields
|
|
|
|
error: aborting due to 3 previous errors
|
|
|