mirror of
https://github.com/php/php-src.git
synced 2026-04-26 09:28:21 +02:00
17 lines
259 B
PHP
17 lines
259 B
PHP
--TEST--
|
|
Edge-cases in elimination of JMPZ JMP with same target
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = "foo";
|
|
if ($foo . "bar") { goto label; }
|
|
label:
|
|
if ($undef) { goto label2; }
|
|
label2:
|
|
echo "done\n";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined variable: undef in %s on line %d
|
|
done
|