Skip to content

Commit 69848fe

Browse files
authored
Rollup merge of rust-lang#63475 - iluuu1994:issue-62632, r=Centril
Bring back suggestion for splitting `<-` into `< -` Closes rust-lang#62632
2 parents ef73a9b + 91af5c2 commit 69848fe

File tree

6 files changed

+33
-8
lines changed

6 files changed

+33
-8
lines changed

src/libsyntax/parse/parser/expr.rs

+17
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,10 @@ impl<'a> Parser<'a> {
224224
self.err_dotdotdot_syntax(self.token.span);
225225
}
226226

227+
if self.token == token::LArrow {
228+
self.err_larrow_operator(self.token.span);
229+
}
230+
227231
self.bump();
228232
if op.is_comparison() {
229233
self.check_no_chained_comparison(&lhs, &op);
@@ -1702,6 +1706,19 @@ impl<'a> Parser<'a> {
17021706
.emit();
17031707
}
17041708

1709+
fn err_larrow_operator(&self, span: Span) {
1710+
self.struct_span_err(
1711+
span,
1712+
"unexpected token: `<-`"
1713+
).span_suggestion(
1714+
span,
1715+
"if you meant to write a comparison against a negative value, add a \
1716+
space in between `<` and `-`",
1717+
"< -".to_string(),
1718+
Applicability::MaybeIncorrect
1719+
).emit();
1720+
}
1721+
17051722
fn mk_assign_op(&self, binop: BinOp, lhs: P<Expr>, rhs: P<Expr>) -> ExprKind {
17061723
ExprKind::AssignOp(binop, lhs, rhs)
17071724
}

src/libsyntax/util/parser.rs

+2
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ impl AssocOp {
9797
// DotDotDot is no longer supported, but we need some way to display the error
9898
token::DotDotDot => Some(DotDotEq),
9999
token::Colon => Some(Colon),
100+
// `<-` should probably be `< -`
101+
token::LArrow => Some(Less),
100102
_ if t.is_keyword(kw::As) => Some(As),
101103
_ => None
102104
}

src/test/ui/obsolete-in-place/bad.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
fn foo() {
44
let (x, y) = (0, 0);
5-
x <- y; //~ ERROR expected one of
5+
x <- y; //~ ERROR unexpected token: `<-`
66
}
77

88
fn main() {

src/test/ui/obsolete-in-place/bad.stderr

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `<-`
1+
error: unexpected token: `<-`
22
--> $DIR/bad.rs:5:7
33
|
44
LL | x <- y;
5-
| ^^ expected one of 8 possible tokens here
5+
| ^^
6+
help: if you meant to write a comparison against a negative value, add a space in between `<` and `-`
7+
|
8+
LL | x < - y;
9+
| ^^^
610

711
error: expected expression, found keyword `in`
812
--> $DIR/bad.rs:10:5

src/test/ui/placement-syntax.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
fn main() {
22
let x = -5;
3-
if x<-1 { //~ ERROR expected `{`, found `<-`
3+
if x<-1 { //~ ERROR unexpected token: `<-`
44
println!("ok");
55
}
66
}

src/test/ui/placement-syntax.stderr

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
error: expected `{`, found `<-`
1+
error: unexpected token: `<-`
22
--> $DIR/placement-syntax.rs:3:9
33
|
44
LL | if x<-1 {
5-
| -- ^^ expected `{`
6-
| |
7-
| this `if` statement has a condition, but no block
5+
| ^^
6+
help: if you meant to write a comparison against a negative value, add a space in between `<` and `-`
7+
|
8+
LL | if x< -1 {
9+
| ^^^
810

911
error: aborting due to previous error
1012

0 commit comments

Comments
 (0)