blob: b71d40065c3f771f20e87f9bf79e3edd9d479b20 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0532]: expected tuple struct/variant, found struct variant `FooB`
--> $DIR/issue-19086.rs:20:9
|
LL | FooB(a, b) => println!("{} {}", a, b),
| ^^^^ did you mean `FooB { /* fields */ }`?
error: aborting due to previous error
For more information about this error, try `rustc --explain E0532`.
|