blob: 21c9be1184ae037650925e0a8e367bba8522770a [file]
error[E0573]: expected type, found variant `Foo::Bar`
--> $DIR/enum-variant-type-2.rs:8:11
|
LL | fn foo(x: Foo::Bar) {}
| ^^^^^^^^ not a type
|
help: try using the variant's enum
|
LL - fn foo(x: Foo::Bar) {}
LL + fn foo(x: Foo) {}
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0573`.