mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
19 lines
357 B
Plaintext
19 lines
357 B
Plaintext
error: struct literals are not allowed here
|
|
--> $DIR/struct-literal-in-match-discriminant.rs:6:11
|
|
|
|
|
LL | match Foo {
|
|
| ___________^
|
|
LL | | x: 3
|
|
LL | | } {
|
|
| |_____^
|
|
|
|
|
help: surround the struct literal with parentheses
|
|
|
|
|
LL ~ match (Foo {
|
|
LL | x: 3
|
|
LL ~ }) {
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|