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