php-src/tests/classes/final.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

30 lines
410 B
PHP

--TEST--
ZE2 A method may be redeclared final
--FILE--
<?php
class first {
function show() {
echo "Call to function first::show()\n";
}
}
$t = new first();
$t->show();
class second extends first {
final function show() {
echo "Call to function second::show()\n";
}
}
$t2 = new second();
$t2->show();
echo "Done\n";
?>
--EXPECT--
Call to function first::show()
Call to function second::show()
Done