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