mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
19 lines
215 B
PHP
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) {
|
|
}
|