xref: /PHP-5.5/Zend/tests/bug43183.phpt (revision 610c7fbe)
1--TEST--
2Bug #43183 ("use" of the same class in difference scripts results in a fatal error)
3--FILE--
4<?php
5namespace Test;
6use Test\Foo;
7class Foo {}
8class Bar {}
9use Test\Bar;
10echo "ok\n";
11--EXPECT--
12ok