2008-05-12 22:58:41 +08:00
|
|
|
--TEST--
|
|
|
|
Testing creation of alias to class name without namespace prefix
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace foo;
|
|
|
|
|
|
|
|
class bar {
|
|
|
|
}
|
|
|
|
|
|
|
|
class_alias('bar', 'baz');
|
|
|
|
|
|
|
|
?>
|
|
|
|
--EXPECTF--
|
2020-05-26 20:10:57 +08:00
|
|
|
Warning: Class "bar" not found in %s on line %d
|