]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-28971.stderr
Rollup merge of #59371 - dlrobertson:rename_va_list_copy, r=joshtriplett
[rust.git] / src / test / ui / issues / issue-28971.stderr
1 error[E0599]: no variant named `Baz` found for type `Foo` in the current scope
2   --> $DIR/issue-28971.rs:9:18
3    |
4 LL | enum Foo {
5    | -------- variant `Baz` not found here
6 ...
7 LL |             Foo::Baz(..) => (),
8    |                  ^^^
9    |                  |
10    |                  variant not found in `Foo`
11    |                  help: did you mean: `Bar`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.