mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-02 05:55:42 +00:00
```
error[E0533]: expected value, found struct variant `E::Empty3`
--> $DIR/empty-struct-braces-expr.rs:18:14
|
LL | let e3 = E::Empty3;
| ^^^^^^^^^ not a value
|
help: you might have meant to create a new value of the struct
|
LL | let e3 = E::Empty3 {};
| ++
```
```
error[E0533]: expected value, found struct variant `E::V`
--> $DIR/struct-literal-variant-in-if.rs:10:13
|
LL | if x == E::V { field } {}
| ^^^^ not a value
|
help: you might have meant to create a new value of the struct
|
LL | if x == (E::V { field }) {}
| + +
```
```
error[E0618]: expected function, found enum variant `Enum::Unit`
--> $DIR/suggestion-highlights.rs:15:5
|
LL | Unit,
| ---- enum variant `Enum::Unit` defined here
...
LL | Enum::Unit();
| ^^^^^^^^^^--
| |
| call expression requires function
|
help: `Enum::Unit` is a unit enum variant, and does not take parentheses to be constructed
|
LL - Enum::Unit();
LL + Enum::Unit;
|
```
```
error[E0599]: no variant or associated item named `tuple` found for enum `Enum` in the current scope
--> $DIR/suggestion-highlights.rs:36:11
|
LL | enum Enum {
| --------- variant or associated item `tuple` not found for this enum
...
LL | Enum::tuple;
| ^^^^^ variant or associated item not found in `Enum`
|
help: there is a variant with a similar name
|
LL | Enum::Tuple(/* i32 */);
| ~~~~~~~~~~~~~~~~;
|
```
26 lines
961 B
Plaintext
26 lines
961 B
Plaintext
error[E0533]: expected value, found struct variant `Homura::Madoka`
|
|
--> $DIR/issue-19452.rs:10:18
|
|
|
|
|
LL | let homura = Homura::Madoka;
|
|
| ^^^^^^^^^^^^^^ not a value
|
|
|
|
|
help: you might have meant to create a new value of the struct
|
|
|
|
|
LL | let homura = Homura::Madoka { age: /* value */ };
|
|
| ++++++++++++++++++++
|
|
|
|
error[E0533]: expected value, found struct variant `issue_19452_aux::Homura::Madoka`
|
|
--> $DIR/issue-19452.rs:13:18
|
|
|
|
|
LL | let homura = issue_19452_aux::Homura::Madoka;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a value
|
|
|
|
|
help: you might have meant to create a new value of the struct
|
|
|
|
|
LL | let homura = issue_19452_aux::Homura::Madoka { age: /* value */ };
|
|
| ++++++++++++++++++++
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0533`.
|