summaryrefslogtreecommitdiff
path: root/tests/classes/abstract_not_declared.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/abstract_not_declared.phpt')
-rw-r--r--tests/classes/abstract_not_declared.phpt15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/classes/abstract_not_declared.phpt b/tests/classes/abstract_not_declared.phpt
new file mode 100644
index 0000000..3b81cd4
--- /dev/null
+++ b/tests/classes/abstract_not_declared.phpt
@@ -0,0 +1,15 @@
+--TEST--
+ZE2 An abstract class must be declared abstract
+--SKIPIF--
+<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
+--FILE--
+<?php
+
+class fail {
+ abstract function show();
+}
+
+echo "Done\n"; // shouldn't be displayed
+?>
+--EXPECTF--
+Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %s on line %d