1.1 ! misho 1: --TEST-- ! 2: 065: Multiple names in use statement ! 3: --FILE-- ! 4: <?php ! 5: use X\Y as test, X\Z as test2; ! 6: ! 7: require "ns_065.inc"; ! 8: ! 9: test\foo(); ! 10: test2\foo(); ! 11: --EXPECT-- ! 12: X\Y\foo ! 13: X\Z\foo