summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69871.phpt
blob: 937cee796aca2731c377dba4d8e36b487205d3ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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)