1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/ns_070.phpt
2024-03-13 21:40:26 +01:00

22 lines
294 B
PHP

--TEST--
Testing parameter type-hinted with default value inside namespace
--FILE--
<?php
namespace foo;
class bar {
public function __construct(?\stdclass $x = NULL) {
var_dump($x);
}
}
new bar(new \stdclass);
new bar(null);
?>
--EXPECTF--
object(stdClass)#%d (0) {
}
NULL