1--TEST--
2Redeclare inherited private static property as public.
3--FILE--
4<?php
5  class A
6  {
7      private 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      public $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--
31A::p (static)
32A::p (static)
33B::p
34