1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/tests/classes/abstract_final.phpt
2017-01-30 22:50:25 +01:00

15 lines
257 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 class member in %s on line %d