Please, could someone help me to figure out why equality has higher priority before postfix here?
int x = 6;
System.out.println(7 == x++);
Output: false
According to some sources of precedence of operators in Java: postfix should have higher priority than equality operator. In those sources there is also mentioned associativity of operators (but it should come in when the precedence level of operators in expressions are same).