rust/tests/ui/parser/removed-syntax-with-1.stderr

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

12 lines
422 B
Plaintext
Raw Normal View History

2018-10-20 15:36:17 -05:00
error: expected one of `,`, `.`, `?`, `}`, or an operator, found `with`
--> $DIR/removed-syntax-with-1.rs:8:25
2018-10-20 15:36:17 -05:00
|
LL | let b = S { foo: () with a, bar: () };
| - -^^^^ expected one of `,`, `.`, `?`, `}`, or an operator
| | |
| | help: try adding a comma: `,`
| while parsing this struct
2018-10-20 15:36:17 -05:00
error: aborting due to previous error
2018-10-20 15:36:17 -05:00