Skip to content

Commit a183ac6

Browse files
committed
add hint for =< as <=
1 parent 74c4821 commit a183ac6

File tree

3 files changed

+79
-1
lines changed

3 files changed

+79
-1
lines changed

compiler/rustc_parse/src/parser/expr.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -1448,8 +1448,19 @@ impl<'a> Parser<'a> {
14481448
}
14491449

14501450
fn parse_expr_path_start(&mut self) -> PResult<'a, P<Expr>> {
1451+
let maybe_eq_tok = self.prev_token.clone();
14511452
let (qself, path) = if self.eat_lt() {
1452-
let (qself, path) = self.parse_qpath(PathStyle::Expr)?;
1453+
let lt_span = self.prev_token.span;
1454+
let (qself, path) = self.parse_qpath(PathStyle::Expr).map_err(|mut err| {
1455+
// Suggests using '<=' if there is an error parsing qpath when the previous token
1456+
// is an '=' token. Only emits suggestion if the '<' token and '=' token are
1457+
// directly adjacent (i.e. '=<')
1458+
if maybe_eq_tok.kind == TokenKind::Eq && maybe_eq_tok.span.hi() == lt_span.lo() {
1459+
let eq_lt = maybe_eq_tok.span.to(lt_span);
1460+
err.span_suggestion(eq_lt, "did you mean", "<=", Applicability::Unspecified);
1461+
}
1462+
err
1463+
})?;
14531464
(Some(qself), path)
14541465
} else {
14551466
(None, self.parse_path(PathStyle::Expr)?)

tests/ui/parser/eq-less-to-less-eq.rs

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
fn foo() {
2+
let a = 0;
3+
let b = 4;
4+
if a =< b { //~ERROR
5+
println!("yay!");
6+
}
7+
}
8+
9+
fn bar() {
10+
let a = 0;
11+
let b = 4;
12+
if a = <b { //~ERROR
13+
println!("yay!");
14+
}
15+
}
16+
17+
fn baz() {
18+
let a = 0;
19+
let b = 4;
20+
if a = < b { //~ERROR
21+
println!("yay!");
22+
}
23+
}
24+
25+
fn qux() {
26+
let a = 0;
27+
let b = 4;
28+
if a =< i32>::abs(-4) { //~ERROR: mismatched types
29+
println!("yay!");
30+
}
31+
}
32+
33+
fn main() {}
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
error: expected one of `!`, `(`, `+`, `::`, `<`, `>`, or `as`, found `{`
2+
--> $DIR/eq-less-to-less-eq.rs:4:15
3+
|
4+
LL | if a =< b {
5+
| -- ^ expected one of 7 possible tokens
6+
| |
7+
| help: did you mean: `<=`
8+
9+
error: expected one of `!`, `(`, `+`, `::`, `<`, `>`, or `as`, found `{`
10+
--> $DIR/eq-less-to-less-eq.rs:12:15
11+
|
12+
LL | if a = <b {
13+
| ^ expected one of 7 possible tokens
14+
15+
error: expected one of `!`, `(`, `+`, `::`, `<`, `>`, or `as`, found `{`
16+
--> $DIR/eq-less-to-less-eq.rs:20:16
17+
|
18+
LL | if a = < b {
19+
| ^ expected one of 7 possible tokens
20+
21+
error[E0308]: mismatched types
22+
--> $DIR/eq-less-to-less-eq.rs:28:8
23+
|
24+
LL | if a =< i32>::abs(-4) {
25+
| ^^^^^^^^^^^^^^^^^^ expected `bool`, found `()`
26+
|
27+
help: you might have meant to compare for equality
28+
|
29+
LL | if a ==< i32>::abs(-4) {
30+
| +
31+
32+
error: aborting due to 4 previous errors
33+
34+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)