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