mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
14 lines
221 B
PHP
14 lines
221 B
PHP
--TEST--
|
|
abstract final methods errmsg
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
final abstract function foo();
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
|