summaryrefslogtreecommitdiff
path: root/src/test/ui/issues/issue-23217.stderr
blob: 208d0cc499a80024011d2467439b515ac5f6e582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0599]: no variant named `A` found for type `SomeEnum` in the current scope
  --> $DIR/issue-23217.rs:2:19
   |
LL | pub enum SomeEnum {
   | ----------------- variant `A` not found here
LL |     B = SomeEnum::A,
   |         ----------^
   |         |
   |         variant not found in `SomeEnum`
   |
   = help: did you mean `B`?

error: aborting due to previous error

For more information about this error, try `rustc --explain E0599`.