mirror of https://github.com/rust-lang/rust
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
error[E0423]: expected value, found struct `xcrate_unit_struct::StructWithFields`
|
|
--> $DIR/unit-struct.rs:9:13
|
|
|
|
|
LL | let _ = xcrate_unit_struct::StructWithFields;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use struct literal syntax instead: `xcrate_unit_struct::StructWithFields { foo: val }`
|
|
|
|
|
::: $DIR/auxiliary/xcrate_unit_struct.rs:20:1
|
|
|
|
|
LL | pub struct StructWithFields {
|
|
| --------------------------- `xcrate_unit_struct::StructWithFields` defined here
|
|
|
|
error[E0423]: expected value, found struct `xcrate_unit_struct::StructWithPrivFields`
|
|
--> $DIR/unit-struct.rs:11:13
|
|
|
|
|
LL | let _ = xcrate_unit_struct::StructWithPrivFields;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
::: $DIR/auxiliary/xcrate_unit_struct.rs:25:1
|
|
|
|
|
LL | pub struct StructWithPrivFields {
|
|
| ------------------------------- `xcrate_unit_struct::StructWithPrivFields` defined here
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0423`.
|