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