php-src/tests/classes/abstract_redeclare.phpt

20 lines
432 B
Plaintext
Raw Normal View History

--TEST--
2003-10-20 04:49:18 +00:00
ZE2 A method cannot be redeclared abstract
--FILE--
<?php
class pass {
function show() {
echo "Call to function show()\n";
}
}
class fail extends pass {
abstract function show();
}
echo "Done\n"; // Shouldn't be displayed
?>
--EXPECTF--
2005-05-03 09:52:01 +00:00
Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %sabstract_redeclare.php on line %d