-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/ns_073.phpt

--TEST--
Testing type-hinted lambda parameter inside namespace
--FILE--
<?php

namespace foo;

$x = function (\stdclass $x = NULL) { 
	var_dump($x);	
};

$x(NULL);
$x(new \stdclass);

?>
--EXPECTF--
NULL
object(stdClass)#%d (0) {
}

Copyright © 2017 || Recoded By Mr.Bumblebee