Details
Description
Looks like Groovy do not handle properly the syntax when multiply negative numbers.
Example:
int i = result * -1
this code does not "compile", the "compiler" says to remove the minus "-" signal.
But it can be resolved:
int i = result * (-1)