php-src/Zend/tests/ns_070.phpt

22 lines
281 B
Plaintext
Raw Normal View History

2008-11-10 11:39:35 +00:00
--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);
}
}
2008-12-04 20:12:30 +00:00
new bar(new \stdclass);
2008-11-10 11:39:35 +00:00
new bar(null);
?>
--EXPECTF--
object(stdClass)#%d (0) {
}
NULL