The following results in a syntax error compile error which it should not do. The parser confused the - to be a negative indication for the int instead of an operator
int GetValue() { return 1-1; };
This works ...
int GetValue() { return 1- 1; };
The following results in a syntax error compile error which it should not do. The parser confused the - to be a negative indication for the int instead of an operator
int GetValue() { return 1-1; };
This works ...
int GetValue() { return 1- 1; };
Please forward the issue to the Enfusion team so this can be addressed.