php-8.0.30-src/ext/opcache/tests/jmpz_jmp_elim.phpt

19 lines
308 B
PHP

--TEST--
Edge-cases in elimination of JMPZ JMP with same target
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$foo = "foo";
if ($foo . "bar") { goto label; }
label:
if ($undef) { goto label2; }
label2:
echo "done\n";
?>
--EXPECTF--
Warning: Undefined variable $undef in %s on line %d
done