1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/Zend/tests/class_alias_016.phpt
2015-05-17 17:31:43 -05:00

25 lines
326 B
PHP

--TEST--
Testing creation of alias to global scope
--FILE--
<?php
namespace foo;
class bar {
}
class_alias('foo\bar', 'foo');
var_dump(new \foo);
var_dump(new foo);
?>
--EXPECTF--
object(foo\bar)#%d (0) {
}
Fatal error: Uncaught Error: Class 'foo\foo' not found in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d