summaryrefslogtreecommitdiff
path: root/Zend/tests/bug61761.phpt
blob: 24c69ae792e30f6492e46c7c6df9b45f5994fc68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #61761 ('Overriding' a private static method with a different signature causes crash)
--FILE--
<?php

class A
{
        private static function test($a) { }
}

class B extends A
{
        private static function test($a, $b) { }
}

?>
==DONE==
--EXPECTF--
==DONE==