rust/tests/ui/structs/default-field-values/empty-struct.stderr
Esteban Küber 27f079ae24 Disallow A { .. } if A has no fields
```
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
```
2025-01-18 21:05:09 +00:00

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