mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
15 lines
249 B
PHP
15 lines
249 B
PHP
--TEST--
|
|
errmsg: function cannot be declared private
|
|
--FILE--
|
|
<?php
|
|
|
|
abstract class test {
|
|
abstract private function foo() {
|
|
}
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Abstract function test::foo() cannot be declared private in %s on line %d
|