0baf61bfdb
Make the spacing between the code snippet and verbose structured suggestions consistent with note and help messages.
19 lines
355 B
Plaintext
19 lines
355 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 previous error
|
|
|