mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
25 lines
321 B
PHP
25 lines
321 B
PHP
--TEST--
|
|
Testing type-hinted lambda parameter inside namespace
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace foo;
|
|
|
|
$x = function (\stdclass $x = NULL) {
|
|
var_dump($x);
|
|
};
|
|
|
|
class stdclass extends \stdclass { }
|
|
|
|
$x(NULL);
|
|
$x(new stdclass);
|
|
$x(new \stdclass);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
NULL
|
|
object(foo\stdclass)#%d (0) {
|
|
}
|
|
object(stdClass)#%d (0) {
|
|
}
|