1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00
Files
archived-php-src/Zend/tests/ns_062.phpt
T
2008-12-04 20:12:30 +00:00

13 lines
189 B
PHP

--TEST--
062: use \global class
--FILE--
<?php
namespace Foo;
use \stdClass;
use \stdClass as A;
echo get_class(new stdClass)."\n";
echo get_class(new A)."\n";
--EXPECT--
stdClass
stdClass