ru_php/tests/classes/abstract_final.phpt

14 lines
253 B
PHP

--TEST--
ZE2 A final method cannot be abstract
--FILE--
<?php
class fail {
abstract final 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