Path: blob/master/test/expression/math/arithmetic_expression_a_optimized.gravity
1214 views
#unittest {
name: "Arithmetic expression (+,-) with multiple subnodes, testing optimizer operator execution order.";
error: NONE;
result: 5;
};
func main() {
var a = 5 - 2 + 2;
return a;
}