Skip to content

Commit ce0a1cf

Browse files
committed
Rollup merge of #45146 - petrochenkov:lessrec, r=estebank
Fix a bug in diagnostics for `x as usize < y` Also improve diagnostics for `x as usize << y`. Fixes #44406 r? @estebank
2 parents 0ca4c4c + 3e4d9df commit ce0a1cf

File tree

5 files changed

+74
-5
lines changed

5 files changed

+74
-5
lines changed

src/libsyntax/parse/parser.rs

+16-3
Original file line numberDiff line numberDiff line change
@@ -2890,17 +2890,30 @@ impl<'a> Parser<'a> {
28902890

28912891
match self.parse_path(PathStyle::Expr) {
28922892
Ok(path) => {
2893+
let (op_noun, op_verb) = match self.token {
2894+
token::Lt => ("comparison", "comparing"),
2895+
token::BinOp(token::Shl) => ("shift", "shifting"),
2896+
_ => {
2897+
// We can end up here even without `<` being the next token, for
2898+
// example because `parse_ty_no_plus` returns `Err` on keywords,
2899+
// but `parse_path` returns `Ok` on them due to error recovery.
2900+
// Return original error and parser state.
2901+
mem::replace(self, parser_snapshot_after_type);
2902+
return Err(type_err);
2903+
}
2904+
};
2905+
28932906
// Successfully parsed the type path leaving a `<` yet to parse.
28942907
type_err.cancel();
28952908

28962909
// Report non-fatal diagnostics, keep `x as usize` as an expression
28972910
// in AST and continue parsing.
28982911
let msg = format!("`<` is interpreted as a start of generic \
2899-
arguments for `{}`, not a comparison", path);
2912+
arguments for `{}`, not a {}", path, op_noun);
29002913
let mut err = self.sess.span_diagnostic.struct_span_err(self.span, &msg);
29012914
err.span_label(self.look_ahead_span(1).to(parser_snapshot_after_type.span),
29022915
"interpreted as generic arguments");
2903-
err.span_label(self.span, "not interpreted as comparison");
2916+
err.span_label(self.span, format!("not interpreted as {}", op_noun));
29042917

29052918
let expr = mk_expr(self, P(Ty {
29062919
span: path.span,
@@ -2911,7 +2924,7 @@ impl<'a> Parser<'a> {
29112924
let expr_str = self.sess.codemap().span_to_snippet(expr.span)
29122925
.unwrap_or(pprust::expr_to_string(&expr));
29132926
err.span_suggestion(expr.span,
2914-
"try comparing the casted value",
2927+
&format!("try {} the casted value", op_verb),
29152928
format!("({})", expr_str));
29162929
err.emit();
29172930

src/test/ui/issue-22644.rs

+2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,7 @@ fn main() {
3535
<
3636
5);
3737

38+
println!("{}", a as usize << long_name);
39+
3840
println!("{}", a: &mut 4);
3941
}

src/test/ui/issue-22644.stderr

+11-2
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,18 @@ help: try comparing the casted value
7676
33 |
7777
...
7878

79+
error: `<` is interpreted as a start of generic arguments for `usize`, not a shift
80+
--> $DIR/issue-22644.rs:38:31
81+
|
82+
38 | println!("{}", a as usize << long_name);
83+
| ---------- ^^ --------- interpreted as generic arguments
84+
| | |
85+
| | not interpreted as shift
86+
| help: try shifting the casted value: `(a as usize)`
87+
7988
error: expected type, found `4`
80-
--> $DIR/issue-22644.rs:38:28
89+
--> $DIR/issue-22644.rs:40:28
8190
|
82-
38 | println!("{}", a: &mut 4);
91+
40 | println!("{}", a: &mut 4);
8392
| ^ expecting a type here because of type ascription
8493

src/test/ui/issue-44406.rs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
macro_rules! foo {
12+
($rest: tt) => {
13+
bar(baz: $rest)
14+
}
15+
}
16+
17+
fn main() {
18+
foo!(true);
19+
}

src/test/ui/issue-44406.stderr

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
error: expected identifier, found keyword `true`
2+
--> $DIR/issue-44406.rs:18:10
3+
|
4+
18 | foo!(true);
5+
| ^^^^
6+
7+
error: expected type, found keyword `true`
8+
--> $DIR/issue-44406.rs:18:10
9+
|
10+
13 | bar(baz: $rest)
11+
| - help: did you mean to use `;` here?
12+
...
13+
18 | foo!(true);
14+
| ^^^^ expecting a type here because of type ascription
15+
16+
error: expected one of `!`, `&&`, `&`, `(`, `*`, `.`, `;`, `<`, `?`, `[`, `_`, `extern`, `fn`, `for`, `impl`, `unsafe`, `}`, an operator, or lifetime, found `true`
17+
--> $DIR/issue-44406.rs:18:10
18+
|
19+
13 | bar(baz: $rest)
20+
| - expected one of 19 possible tokens here
21+
...
22+
18 | foo!(true);
23+
| ^^^^ unexpected token
24+
25+
error: aborting due to 3 previous errors
26+

0 commit comments

Comments
 (0)