1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 19:41:05 +02:00
Files
archived-php-src/ext/opcache/tests/bug77743.phpt
2020-02-03 22:52:20 +01:00

20 lines
322 B
PHP

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