php-src/Zend/tests/errmsg_002.phpt

15 lines
249 B
Plaintext
Raw Normal View History

2007-02-07 11:10:32 +00:00
--TEST--
errmsg: function cannot be declared private
--FILE--
<?php
abstract class test {
abstract private function foo() {
}
}
echo "Done\n";
?>
2018-10-14 15:45:48 +00:00
--EXPECTF--
2007-02-07 11:10:32 +00:00
Fatal error: Abstract function test::foo() cannot be declared private in %s on line %d