We get a compile error for expressions with a prefix minus that appears immediately after an operator.
For example:
throws the error:
Compile Error
--> 4:11
|
4 | a { 1.0 / -2.0 }
| ^---
| = expected factor
The same error gets thrown in these cases too:
b { 1.0 * -2.0 }
c { 1.0 + -2.0 }
d { 1.0 - -2.0 }