summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bool_cp_in_pass1.phpt
blob: 3857c4db30f7ab9a9a58fa60c30a6b7b70774109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Incorrect constant propagation on BOOL in pass 1
--FILE--
<?php
function test($foo) {
    $bar = 0;
    if ($bar === 1 && $foo && PHP_SAPI !== 'cgi') {
        echo "bar\n";
    }
    echo "foo\n";
}
test(1);
?>
--EXPECT--
foo