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