blob: 1fe49f8fb14a670b5a3cac5a03b455fb9d606c64 [file] [log] [blame]
error[E0532]: expected tuple struct/variant, found unit variant `E::A`
--> $DIR/issue-pr29383.rs:9: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:10: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`.