1--TEST-- 2Allow self and parent in use const statement 3--FILE-- 4<?php 5 6namespace { 7 use const self as foo; 8 use const parent as bar; 9} 10 11?> 12--EXPECT-- 13