php-src/ext/opcache/tests/bug77743.phpt

18 lines
250 B
Plaintext
Raw Normal View History

2019-03-18 17:49:53 +08:00
--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);
2019-03-18 17:49:53 +08:00
}
buggy(42);
2019-03-18 17:49:53 +08:00
--EXPECT--
int(42)