2020-01-08 16:05:31 +00:00
|
|
|
error[E0599]: no variant named `B` found for enum `S`
|
2019-04-08 21:58:18 +00:00
|
|
|
--> $DIR/issue-34209.rs:7:12
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-04-08 21:58:18 +00:00
|
|
|
LL | enum S {
|
2022-07-07 06:52:27 +00:00
|
|
|
| ------ variant `B` not found here
|
2019-04-08 21:58:18 +00:00
|
|
|
...
|
|
|
|
LL | S::B {} => {},
|
|
|
|
| ^ help: there is a variant with a similar name: `A`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2020-01-08 16:05:31 +00:00
|
|
|
For more information about this error, try `rustc --explain E0599`.
|