php-src/Zend/tests/bug61761.phpt

20 lines
278 B
Plaintext
Raw Normal View History

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