bug69871.phpt   [plain text]


--TEST--
Bug #69871 (Short-circuiting failure with smart_branch)
--INI--
opcache.enable=0
--FILE--
<?php

$a = true;
if (isset($a) && 0) {
	var_dump(true);
} else {
	var_dump(false);
}

?>
--EXPECT--
bool(false)