1--TEST--
2Inheritance of private method with static variable
3--FILE--
4<?php
5
6class A {
7    private function m() {
8        static $x;
9    }
10}
11class B extends A {}
12
13?>
14===DONE===
15--EXPECT--
16===DONE===
17