Given a simple expression like
*a[0]
where it is adeclared as *[]string(pointer to a fragment of lines).
Where does the standard accurately explain the order in which language constructs are evaluated?
I found that none of them is actually an operator, and only the two keyword references precedencementioned in the spec:
So, what part of the specification would explain the evaluation order of the provided expression?
source
share