php-src/Zend/tests/bug69871.phpt
Nikita Popov 9ed2f4898b Don't disable opcache for generic tests
Even if the original issue only reproduces without opcache, we
should still allow running them with and without opcache.
2020-11-04 11:12:12 +01:00

16 lines
193 B
PHP

--TEST--
Bug #69871 (Short-circuiting failure with smart_branch)
--FILE--
<?php
$a = true;
if (isset($a) && 0) {
var_dump(true);
} else {
var_dump(false);
}
?>
--EXPECT--
bool(false)