2018-08-08 12:28:26 +00:00
|
|
|
error[E0423]: expected value, found struct `xcrate_unit_struct::StructWithFields`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/xcrate-unit-struct.rs:9:13
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let _ = xcrate_unit_struct::StructWithFields;
|
2020-07-10 00:42:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use struct literal syntax instead: `xcrate_unit_struct::StructWithFields { foo: val }`
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2020-08-10 04:14:59 +00:00
|
|
|
::: $DIR/auxiliary/xcrate_unit_struct.rs:20:1
|
|
|
|
|
|
|
|
|
LL | pub struct StructWithFields {
|
|
|
|
| --------------------------- `xcrate_unit_struct::StructWithFields` defined here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0423`.
|