Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/lang/bug29944.phpt

--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===