2019-08-01 16:31:12 -05:00
|
|
|
error: this file contains an un-closed delimiter
|
|
|
|
--> $DIR/issue-63135.rs:3:16
|
|
|
|
|
|
|
|
|
LL | fn i(n{...,f #
|
|
|
|
| - - ^
|
|
|
|
| | |
|
|
|
|
| | un-closed delimiter
|
|
|
|
| un-closed delimiter
|
|
|
|
|
|
|
|
error: expected field pattern, found `...`
|
|
|
|
--> $DIR/issue-63135.rs:3:8
|
|
|
|
|
|
|
|
|
LL | fn i(n{...,f #
|
|
|
|
| ^^^ help: to omit remaining fields, use one fewer `.`: `..`
|
|
|
|
|
|
|
|
error: expected `}`, found `,`
|
|
|
|
--> $DIR/issue-63135.rs:3:11
|
|
|
|
|
|
|
|
|
LL | fn i(n{...,f #
|
|
|
|
| ---^
|
|
|
|
| | |
|
|
|
|
| | expected `}`
|
|
|
|
| `..` must be at the end and cannot have a trailing comma
|
|
|
|
|
|
|
|
error: expected `[`, found `}`
|
2019-11-03 05:58:01 -06:00
|
|
|
--> $DIR/issue-63135.rs:3:16
|
2019-08-01 16:31:12 -05:00
|
|
|
|
|
|
|
|
LL | fn i(n{...,f #
|
2019-11-03 05:58:01 -06:00
|
|
|
| ^ expected `[`
|
2019-08-01 16:31:12 -05:00
|
|
|
|
2019-08-24 21:39:28 -05:00
|
|
|
error: expected one of `:` or `|`, found `)`
|
2019-11-03 05:58:01 -06:00
|
|
|
--> $DIR/issue-63135.rs:3:16
|
2019-08-01 16:31:12 -05:00
|
|
|
|
|
|
|
|
LL | fn i(n{...,f #
|
2019-11-03 05:58:01 -06:00
|
|
|
| ^ expected one of `:` or `|` here
|
2019-08-01 16:31:12 -05:00
|
|
|
|
2019-08-24 21:39:28 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2019-08-01 16:31:12 -05:00
|
|
|
|