2022-10-25 11:15:15 -05:00
|
|
|
error[E0533]: expected value, found struct variant `Homura::Madoka`
|
2019-03-11 19:49:17 -05:00
|
|
|
--> $DIR/issue-19452.rs:10:18
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let homura = Homura::Madoka;
|
2022-10-25 11:15:15 -05:00
|
|
|
| ^^^^^^^^^^^^^^ not a value
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2022-10-25 11:15:15 -05:00
|
|
|
error[E0533]: expected value, found struct variant `issue_19452_aux::Homura::Madoka`
|
2019-03-11 19:49:17 -05:00
|
|
|
--> $DIR/issue-19452.rs:13:18
|
2016-11-30 16:35:25 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let homura = issue_19452_aux::Homura::Madoka;
|
2022-10-25 11:15:15 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a value
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2016-11-30 16:35:25 -06:00
|
|
|
|
2022-10-25 11:15:15 -05:00
|
|
|
For more information about this error, try `rustc --explain E0533`.
|