1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00
Files
archived-php-src/tests/classes/private_006b.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

40 lines
502 B
PHP

--TEST--
ZE2 A private method can be overwritten in a second derived class
--FILE--
<?php
class first {
private function show() {
echo "Call show()\n";
}
public function do_show() {
$this->show();
}
}
$t1 = new first();
$t1->do_show();
class second extends first {
}
//$t2 = new second();
//$t2->do_show();
class third extends second {
private function show() {
echo "Call show()\n";
}
}
$t3 = new third();
$t3->do_show();
echo "Done\n";
?>
--EXPECT--
Call show()
Call show()
Done