1--TEST-- 2Redeclare inherited protected static property as protected. 3--FILE-- 4<?php 5 class A 6 { 7 protected static $p = "A::p (static)"; 8 static function showA() 9 { 10 echo self::$p . "\n"; 11 } 12 } 13 14 class B extends A 15 { 16 protected $p = "B::p"; 17 function showB() 18 { 19 echo $this->p . "\n"; 20 } 21 } 22 23 24 A::showA(); 25 26 $b = new B; 27 $b->showA(); 28 $b->showB(); 29?> 30--EXPECTF-- 31 32Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18 33 34