summaryrefslogtreecommitdiff
path: root/Zend/tests/bug77613.phpt
blob: 02d7ad4b72f6b617c56538a2a838749fd773e4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #77613 (method visibility change)
--FILE--
<?php
class A {
    public function __construct() {
        static $foo;
    }
}

class B extends A { }

class C extends B {
    private function __construct() {}
}
?>
OK
--EXPECT--
OK