blob: 9b8956da7a2d1b13fd408b7d1aebd832c85dc7cd [file] [log] [blame]
error[E0532]: expected tuple struct/variant, found unit variant `E::A`
--> $DIR/issue-pr29383.rs:19:14
|
LL | Some(E::A(..)) => {} //~ ERROR expected tuple struct/variant, found unit variant `E::A`
| ^^^^ not a tuple struct/variant
error[E0532]: expected tuple struct/variant, found unit variant `E::B`
--> $DIR/issue-pr29383.rs:20:14
|
LL | Some(E::B(..)) => {} //~ ERROR expected tuple struct/variant, found unit variant `E::B`
| ^^^^ not a tuple struct/variant
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0532`.