bug43183.phpt 208 B

12345678910111213
  1. --TEST--
  2. Bug #43183 ("use" of the same class in difference scripts results in a fatal error)
  3. --FILE--
  4. <?php
  5. namespace Test;
  6. use Test\Foo;
  7. class Foo {}
  8. class Bar {}
  9. use Test\Bar;
  10. echo "ok\n";
  11. ?>
  12. --EXPECT--
  13. ok