xref: /PHP-7.4/Zend/tests/bug69871.phpt (revision 89fda084)
1--TEST--
2Bug #69871 (Short-circuiting failure with smart_branch)
3--INI--
4opcache.enable=0
5--FILE--
6<?php
7
8$a = true;
9if (isset($a) && 0) {
10	var_dump(true);
11} else {
12	var_dump(false);
13}
14
15?>
16--EXPECT--
17bool(false)
18