ru_php/tests/classes/final_abstract.phpt

14 lines
253 B
Plaintext
Raw Permalink Normal View History

--TEST--
ZE2 A final method cannot be abstract
--FILE--
<?php
class fail {
final abstract function show();
}
echo "Done\n"; // Shouldn't be displayed
?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract method in %s on line %d