1--TEST--
2Redeclare inherited protected property as private (duplicates Zend/tests/errmsg_023.phpt).
3--FILE--
4<?php
5  class A
6  {
7      protected $p = "A::p";
8      function showA()
9      {
10          echo $this->p . "\n";
11      }
12  }
13
14  class B extends A
15  {
16      private $p = "B::p";
17      function showB()
18      {
19          echo $this->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--
32
33Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
34