mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
422 B
Text
11 lines
422 B
Text
error: expected one of `,`, `.`, `?`, `}`, or an operator, found `with`
|
|
--> $DIR/removed-syntax-with-1.rs:8:25
|
|
|
|
|
LL | let b = S { foo: () with a, bar: () };
|
|
| - -^^^^ expected one of `,`, `.`, `?`, `}`, or an operator
|
|
| | |
|
|
| | help: try adding a comma: `,`
|
|
| while parsing this struct
|
|
|
|
error: aborting due to previous error
|
|
|