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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
355 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 | | } {
| |_____^
|
2019-05-02 22:53:09 +00:00
help: surround the struct literal with parentheses
|
LL ~ match (Foo {
LL | x: 3
LL ~ }) {
|
2018-10-20 20:36:17 +00:00
error: aborting due to previous error