bug43183.phpt 204 B

123456789101112
  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. --EXPECT--
  12. ok