summaryrefslogtreecommitdiff
path: root/Zend/tests/bug62956.phpt
blob: c8694d5beaa5d1f098e370390db22114b948977c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Bug #62956: "incompatible" signatures for private methods should not cause E_STRICT
--FILE--
<?php
class Base
{
	private function test()
	{}
}

class Extension extends Base
{
	private function test($arg)
	{}
}

?>
==DONE==
--EXPECT--
==DONE==