summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_002.phpt
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-02-07 11:10:32 +0000
committerAntony Dovgal <tony2001@php.net>2007-02-07 11:10:32 +0000
commit0f0fe9c96714776cec451792249854ff675c5b36 (patch)
treec991f5e35f5d01185a952e4c726bec1c126ee023 /Zend/tests/errmsg_002.phpt
parent3f8e222ab36a12c9e3bd2ed3fff1db482d616bff (diff)
downloadphp-git-0f0fe9c96714776cec451792249854ff675c5b36.tar.gz
MFH: new tests
Diffstat (limited to 'Zend/tests/errmsg_002.phpt')
-rw-r--r--Zend/tests/errmsg_002.phpt14
1 files changed, 14 insertions, 0 deletions
diff --git a/Zend/tests/errmsg_002.phpt b/Zend/tests/errmsg_002.phpt
new file mode 100644
index 0000000000..b7330c9f1f
--- /dev/null
+++ b/Zend/tests/errmsg_002.phpt
@@ -0,0 +1,14 @@
+--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