rust/src/test/ui/parser/struct-literal-in-match-discriminant.stderr

18 lines
350 B
Plaintext
Raw Normal View History

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 parenthesis
|
LL | match (Foo {
LL | x: 3
LL | }) {
|
2018-10-20 15:36:17 -05:00
error: aborting due to previous error