Your IP : 216.73.216.48


Current Path : /hdd/hdd12/install/php/php-7.4.32/Zend/tests/
Upload File :
Current File : //hdd/hdd12/install/php/php-7.4.32/Zend/tests/bug61761.phpt

--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==
--EXPECT--
==DONE==