1--TEST-- 2Testing creation of alias to global scope 3--FILE-- 4<?php 5 6namespace foo; 7 8class bar { 9} 10 11class_alias('foo\bar', 'foo'); 12 13var_dump(new \foo); 14var_dump(new foo); 15 16?> 17--EXPECTF-- 18object(foo\bar)#%d (0) { 19} 20 21Fatal error: Class 'foo\foo' not found in %s on line %d 22