mirror of
https://github.com/php/php-src.git
synced 2024-12-30 04:06:30 +08:00
19 lines
211 B
PHP
19 lines
211 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) {
|
|
}
|