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