php-src/ext/opcache/tests/bug77743.phpt
Xinchen Hui e072537e7f Simplfy test case
(I was working on the same bug while nikic committed the similar fix
2019-03-18 19:28:23 +08:00

18 lines
250 B
PHP

--TEST--
Bug #77743: Incorrect pi node insertion for jmpznz with identical successors
--FILE--
<?php
function buggy($a) {
$id_country = $a;
if ($id_country === false) {
if (true) {
}
}
var_dump($id_country);
}
buggy(42);
--EXPECT--
int(42)