提交 813f00dd 编写于 作者: T Takayuki Maeda

fix a suggestion message

上级 bdc31778
......@@ -1538,7 +1538,7 @@ fn parse_name_and_ty(
self.struct_span_err(self.token.span, "found single colon in a struct field type path")
.span_suggestion_verbose(
self.token.span,
"maybe you meant to write a path separator here",
"write a path separator here",
"::".to_string(),
Applicability::MaybeIncorrect,
)
......
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,
| ^
|
help: maybe you meant to write a path separator here
help: write a path separator here
|
LL | a: foo::A,
| ~~
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,
| ^
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,
| ^
|
help: maybe you meant to write a path separator here
help: write a path separator here
|
LL | b: foo::bar::B,
| ~~
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,
| ^
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册