## SHOULD_PASS:EXECUTE

vec() * 0
0 * vec()

Calls = 0
function number f() {
	Calls++
	return 1
}
f() * 0
0 * f()
assert(Calls == 2)
