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