1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/class_alias_014.phpt
Felipe Pena d9d47f3718 - New tests
2008-05-12 14:58:31 +00:00

16 lines
212 B
PHP

--TEST--
Testing creation of alias to class name without namespace prefix
--FILE--
<?php
namespace foo;
class bar {
}
class_alias('bar', 'baz');
?>
--EXPECTF--
Warning: Class 'bar' not found in %s on line %d