ru_php/ext/opcache/tests/bool_cp_in_pass1.phpt

18 lines
259 B
PHP

--TEST--
Incorrect constant propagation on BOOL in pass 1
--EXTENSIONS--
opcache
--FILE--
<?php
function test($foo) {
$bar = 0;
if ($bar === 1 && $foo && PHP_SAPI !== 'cgi') {
echo "bar\n";
}
echo "foo\n";
}
test(1);
?>
--EXPECT--
foo