@@ -6,7 +6,7 @@ use clippy_utils::{
6
6
expr_use_ctxt, get_parent_expr, is_block_like, is_lint_allowed, path_to_local, DefinedTy , ExprUseNode ,
7
7
} ;
8
8
use core:: mem;
9
- use rustc_ast:: util:: parser:: { PREC_POSTFIX , PREC_PREFIX } ;
9
+ use rustc_ast:: util:: parser:: { PREC_UNAMBIGUOUS , PREC_PREFIX } ;
10
10
use rustc_data_structures:: fx:: FxIndexMap ;
11
11
use rustc_errors:: Applicability ;
12
12
use rustc_hir:: intravisit:: { walk_ty, Visitor } ;
@@ -1013,7 +1013,7 @@ fn report<'tcx>(
1013
1013
let ( precedence, calls_field) = match cx. tcx . parent_hir_node ( data. first_expr . hir_id ) {
1014
1014
Node :: Expr ( e) => match e. kind {
1015
1015
ExprKind :: Call ( callee, _) if callee. hir_id != data. first_expr . hir_id => ( 0 , false ) ,
1016
- ExprKind :: Call ( ..) => ( PREC_POSTFIX , matches ! ( expr. kind, ExprKind :: Field ( ..) ) ) ,
1016
+ ExprKind :: Call ( ..) => ( PREC_UNAMBIGUOUS , matches ! ( expr. kind, ExprKind :: Field ( ..) ) ) ,
1017
1017
_ => ( e. precedence ( ) . order ( ) , false ) ,
1018
1018
} ,
1019
1019
_ => ( 0 , false ) ,
@@ -1160,7 +1160,7 @@ impl<'tcx> Dereferencing<'tcx> {
1160
1160
} ,
1161
1161
Some ( parent) if !parent. span . from_expansion ( ) => {
1162
1162
// Double reference might be needed at this point.
1163
- if parent. precedence ( ) . order ( ) == PREC_POSTFIX {
1163
+ if parent. precedence ( ) . order ( ) == PREC_UNAMBIGUOUS {
1164
1164
// Parentheses would be needed here, don't lint.
1165
1165
* outer_pat = None ;
1166
1166
} else {
0 commit comments