Browse Source

- Added test for bug #29944.

PHP-5.1
Derick Rethans 22 years ago
parent
commit
00b9ace829
  1. 20
      tests/lang/bug29944.phpt

20
tests/lang/bug29944.phpt

@ -0,0 +1,20 @@
--TEST--
Bug #29944 (function defined in switch crashes PHP)
--FILE--
<?PHP
$a = 1;
$b = "1";
switch ($a) {
case 1:
function foo($bar) {
if (preg_match('/\d/', $bar)) return true;
return false;
}
echo foo($b);
}
?>
===DONE===
--EXPECT--
1
===DONE===
Loading…
Cancel
Save