@@ -2890,17 +2890,30 @@ impl<'a> Parser<'a> {
2890
2890
2891
2891
match self . parse_path ( PathStyle :: Expr ) {
2892
2892
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
+
2893
2906
// Successfully parsed the type path leaving a `<` yet to parse.
2894
2907
type_err. cancel ( ) ;
2895
2908
2896
2909
// Report non-fatal diagnostics, keep `x as usize` as an expression
2897
2910
// in AST and continue parsing.
2898
2911
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 ) ;
2900
2913
let mut err = self . sess . span_diagnostic . struct_span_err ( self . span , & msg) ;
2901
2914
err. span_label ( self . look_ahead_span ( 1 ) . to ( parser_snapshot_after_type. span ) ,
2902
2915
"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 ) ) ;
2904
2917
2905
2918
let expr = mk_expr ( self , P ( Ty {
2906
2919
span : path. span ,
@@ -2911,7 +2924,7 @@ impl<'a> Parser<'a> {
2911
2924
let expr_str = self . sess . codemap ( ) . span_to_snippet ( expr. span )
2912
2925
. unwrap_or ( pprust:: expr_to_string ( & expr) ) ;
2913
2926
err. span_suggestion ( expr. span ,
2914
- "try comparing the casted value" ,
2927
+ & format ! ( "try {} the casted value" , op_verb ) ,
2915
2928
format ! ( "({})" , expr_str) ) ;
2916
2929
err. emit ( ) ;
2917
2930
0 commit comments