This gives a syntax error: str = "This " & 2 + 2 & " is a test" but this str = "This " & (2 + 2) & " is a test" works fine. Bug or feature?