2017-11-15 01:20:09 -06:00
|
|
|
error[E0423]: expected function, found enum `Option`
|
2019-03-20 13:54:43 -05:00
|
|
|
--> $DIR/issue-43871-enum-instead-of-variant.rs:19:13
|
2017-11-23 07:10:23 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let x = Option(1);
|
2017-11-23 07:10:23 -06:00
|
|
|
| ^^^^^^
|
2019-03-20 13:54:43 -05:00
|
|
|
help: try using one of the enum's variants
|
2017-11-15 01:20:09 -06:00
|
|
|
|
|
2019-03-20 13:54:43 -05:00
|
|
|
LL | let x = std::prelude::v1::Option::None(1);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | let x = std::prelude::v1::Option::Some(1);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-11-15 01:20:09 -06:00
|
|
|
|
|
|
|
error[E0532]: expected tuple struct/variant, found enum `Option`
|
2019-03-20 13:54:43 -05:00
|
|
|
--> $DIR/issue-43871-enum-instead-of-variant.rs:21:12
|
2017-11-15 01:20:09 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | if let Option(_) = x {
|
2017-11-15 01:20:09 -06:00
|
|
|
| ^^^^^^
|
2019-03-20 13:54:43 -05:00
|
|
|
help: try using one of the enum's variants
|
2017-11-15 01:20:09 -06:00
|
|
|
|
|
2019-03-20 13:54:43 -05:00
|
|
|
LL | if let std::prelude::v1::Option::None(_) = x {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | if let std::prelude::v1::Option::Some(_) = x {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-11-15 01:20:09 -06:00
|
|
|
|
2017-11-23 07:10:23 -06:00
|
|
|
error[E0532]: expected tuple struct/variant, found enum `Example`
|
2019-03-20 13:54:43 -05:00
|
|
|
--> $DIR/issue-43871-enum-instead-of-variant.rs:27:12
|
2017-11-23 07:10:23 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | if let Example(_) = y {
|
2017-11-23 07:10:23 -06:00
|
|
|
| ^^^^^^^
|
2019-03-20 13:54:43 -05:00
|
|
|
help: try using one of the enum's variants
|
2017-11-23 07:10:23 -06:00
|
|
|
|
|
2019-03-20 13:54:43 -05:00
|
|
|
LL | if let Example::Ex(_) = y {
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
LL | if let Example::NotEx(_) = y {
|
|
|
|
| ^^^^^^^^^^^^^^
|
2017-11-23 07:10:23 -06:00
|
|
|
|
2019-03-20 13:54:43 -05:00
|
|
|
error[E0423]: expected function, found enum `Void`
|
|
|
|
--> $DIR/issue-43871-enum-instead-of-variant.rs:31:13
|
|
|
|
|
|
|
|
|
LL | let y = Void();
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error[E0423]: expected function, found enum `ManyVariants`
|
|
|
|
--> $DIR/issue-43871-enum-instead-of-variant.rs:33:13
|
|
|
|
|
|
|
|
|
LL | let z = ManyVariants();
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: try using one of the enum's variants
|
|
|
|
|
|
|
|
|
LL | let z = ManyVariants::Eight();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | let z = ManyVariants::Five();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | let z = ManyVariants::Four();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | let z = ManyVariants::Nine();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
and 6 other candidates
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2017-11-15 01:20:09 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
Some errors occurred: E0423, E0532.
|
|
|
|
For more information about an error, try `rustc --explain E0423`.
|