1
Fork 0

Apply review comments

This commit is contained in:
Yuki Okushi 2021-09-17 14:10:41 +09:00
parent 9342be5538
commit ee99bb3939
No known key found for this signature in database
GPG key ID: DABA5B072961C18A
2 changed files with 8 additions and 6 deletions

View file

@ -1959,11 +1959,11 @@ impl<'a> Parser<'a> {
if token::EqEq == snapshot.token.kind { if token::EqEq == snapshot.token.kind {
err.span_suggestion( err.span_suggestion(
snapshot.token.span, snapshot.token.span,
"replace `==` with `=`", "if you meant to use an associated type binding, replace `==` with `=`",
"=".to_string(), "=".to_string(),
Applicability::MaybeIncorrect, Applicability::MaybeIncorrect,
); );
let value = self.mk_expr_err(expr.span); let value = self.mk_expr_err(start.to(expr.span));
err.emit(); err.emit();
return Ok(GenericArg::Const(AnonConst { id: ast::DUMMY_NODE_ID, value })); return Ok(GenericArg::Const(AnonConst { id: ast::DUMMY_NODE_ID, value }));
} else if token::Comma == self.token.kind || self.token.kind.should_end_const_arg() } else if token::Comma == self.token.kind || self.token.kind.should_end_const_arg()

View file

@ -2,10 +2,12 @@ error: expected one of `,` or `>`, found `==`
--> $DIR/issue-87493.rs:8:22 --> $DIR/issue-87493.rs:8:22
| |
LL | T: MyTrait<Assoc == S::Assoc>, LL | T: MyTrait<Assoc == S::Assoc>,
| ^^ | ^^ expected one of `,` or `>`
| | |
| expected one of `,` or `>` help: if you meant to use an associated type binding, replace `==` with `=`
| help: replace `==` with `=`: `=` |
LL | T: MyTrait<Assoc = S::Assoc>,
| ~
error[E0107]: this trait takes 0 generic arguments but 1 generic argument was supplied error[E0107]: this trait takes 0 generic arguments but 1 generic argument was supplied
--> $DIR/issue-87493.rs:8:8 --> $DIR/issue-87493.rs:8:8