1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
--TEST-- No more errmsg: can now change initial value of property --FILE-- <?php class test1 { static protected $var = 1; } class test extends test1 { static $var = 10; } echo "Done\n"; ?> --EXPECTF-- Done