Skip to content

Commit 8cfd4b1

Browse files
committed
Unify the precedence level for PREC_POSTFIX and PREC_PAREN
1 parent bcf94de commit 8cfd4b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_ast/src/util/parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ pub const PREC_RANGE: i8 = -10;
234234
// The range 2..=14 is reserved for AssocOp binary operator precedences.
235235
pub const PREC_PREFIX: i8 = 50;
236236
pub const PREC_POSTFIX: i8 = 60;
237-
pub const PREC_PAREN: i8 = 99;
237+
pub const PREC_PAREN: i8 = 60;
238238
pub const PREC_FORCE_PAREN: i8 = 100;
239239

240240
#[derive(Debug, Clone, Copy)]

0 commit comments

Comments
 (0)