php-src/Zend/tests/bug43183.phpt

12 lines
204 B
Plaintext
Raw Normal View History

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