Return to bug43183.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests |
1.1 ! misho 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