mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
14 lines
259 B
PHP
14 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
|