1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/Zend/tests/bug69871.phpt
2020-02-03 22:52:20 +01:00

18 lines
218 B
PHP

--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)