1
Fork 0

fix a suggestion message

This commit is contained in:
Takayuki Maeda 2022-03-11 21:26:06 +09:00
parent bdc3177868
commit 813f00dd4f
3 changed files with 7 additions and 7 deletions

View file

@ -1538,7 +1538,7 @@ impl<'a> Parser<'a> {
self.struct_span_err(self.token.span, "found single colon in a struct field type path") self.struct_span_err(self.token.span, "found single colon in a struct field type path")
.span_suggestion_verbose( .span_suggestion_verbose(
self.token.span, self.token.span,
"maybe you meant to write a path separator here", "write a path separator here",
"::".to_string(), "::".to_string(),
Applicability::MaybeIncorrect, Applicability::MaybeIncorrect,
) )

View file

@ -1,33 +1,33 @@
error: found single colon in a struct field type path error: found single colon in a struct field type path
--> $DIR/sturct-field-type-including-single-colon.rs:9:11 --> $DIR/struct-field-type-including-single-colon.rs:9:11
| |
LL | a: foo:A, LL | a: foo:A,
| ^ | ^
| |
help: maybe you meant to write a path separator here help: write a path separator here
| |
LL | a: foo::A, LL | a: foo::A,
| ~~ | ~~
error: expected `,`, or `}`, found `:` error: expected `,`, or `}`, found `:`
--> $DIR/sturct-field-type-including-single-colon.rs:9:11 --> $DIR/struct-field-type-including-single-colon.rs:9:11
| |
LL | a: foo:A, LL | a: foo:A,
| ^ | ^
error: found single colon in a struct field type path error: found single colon in a struct field type path
--> $DIR/sturct-field-type-including-single-colon.rs:15:16 --> $DIR/struct-field-type-including-single-colon.rs:15:16
| |
LL | b: foo::bar:B, LL | b: foo::bar:B,
| ^ | ^
| |
help: maybe you meant to write a path separator here help: write a path separator here
| |
LL | b: foo::bar::B, LL | b: foo::bar::B,
| ~~ | ~~
error: expected `,`, or `}`, found `:` error: expected `,`, or `}`, found `:`
--> $DIR/sturct-field-type-including-single-colon.rs:15:16 --> $DIR/struct-field-type-including-single-colon.rs:15:16
| |
LL | b: foo::bar:B, LL | b: foo::bar:B,
| ^ | ^