--TEST-- Bug #23384 (use of class constants in statics) --FILE-- 'ten'); static $arr = array(Foo::HUN => 'ten'); print_r($arr); print_r($arr2); print_r($x); } } function main() { define('TEN', 10); Foo::test(); echo Foo::HUN . "\n"; } ?> --EXPECT-- Array ( [100] => ten ) Array ( [10] => ten ) 100100