php-src/Zend/tests/bug43183.phpt
2012-10-10 10:27:49 +08:00

12 lines
204 B
PHP

--TEST--
Bug #43183 ("use" of the same class in difference scripts results in a fatal error)
--FILE--
<?php
namespace Test;
use Test\Foo;
class Foo {}
class Bar {}
use Test\Bar;
echo "ok\n";
--EXPECT--
ok