mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
13 lines
259 B
PHP
13 lines
259 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
|