1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
Files
archived-php-src/Zend/tests/class_alias_015.phpt
T
Felipe Pena d9d47f3718 - New tests
2008-05-12 14:58:31 +00:00

19 lines
215 B
PHP

--TEST--
Testing instantiation using namespace:: prefix
--FILE--
<?php
namespace foo;
class bar {
}
class_alias('foo::bar', 'foo::baz');
var_dump(new namespace::baz);
?>
--EXPECTF--
object(foo::bar)#%d (0) {
}