1--TEST--
2Ensure private methods with the same name are not checked for inheritance rules - static
3--FILE--
4<?php
5class A {
6    static private function foo() { }
7    private function bar() {}
8}
9class B extends A {
10    private function foo() {}
11    static private function bar() {}
12}
13echo 'OK';
14?>
15--EXPECT--
16OK
17