Describe the bug
int x = 1
const int X = 1
int y = 1
# next line is ok
_ = x * y
# next line is NOT ok
_ = X * y
Error: Cannot parse "X * y" as Expression
To Reproduce
Steps to reproduce the behavior.
Expected behavior
both lines should compile
Additional context
Add any other context about the problem here.
Describe the bug
Error: Cannot parse "X * y" as ExpressionTo Reproduce
Steps to reproduce the behavior.
Expected behavior
both lines should compile
Additional context
Add any other context about the problem here.