php-src/Zend/tests/class_alias_015.phpt

19 lines
211 B
Plaintext
Raw Normal View History

2008-05-12 14:58:41 +00:00
--TEST--
Testing instantiation using namespace:: prefix
--FILE--
<?php
namespace foo;
class bar {
}
2008-12-04 20:12:30 +00:00
class_alias('foo\bar', 'foo\baz');
2008-05-12 14:58:41 +00:00
2008-12-04 20:12:30 +00:00
var_dump(new namespace\baz);
2008-05-12 14:58:41 +00:00
?>
--EXPECTF--
2008-12-04 20:12:30 +00:00
object(foo\bar)#%d (0) {
2008-05-12 14:58:41 +00:00
}