summaryrefslogtreecommitdiff
path: root/tests/classes/static_mix_1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/static_mix_1.phpt')
-rw-r--r--tests/classes/static_mix_1.phpt26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/classes/static_mix_1.phpt b/tests/classes/static_mix_1.phpt
new file mode 100644
index 0000000..ecc9c01
--- /dev/null
+++ b/tests/classes/static_mix_1.phpt
@@ -0,0 +1,26 @@
+--TEST--
+ZE2 You cannot overload a static method with a non static method
+--SKIPIF--
+<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
+--FILE--
+<?php
+
+class pass {
+ static function show() {
+ echo "Call to function pass::show()\n";
+ }
+}
+
+class fail extends pass {
+ function show() {
+ echo "Call to function fail::show()\n";
+ }
+}
+
+pass::show();
+fail::show();
+
+echo "Done\n"; // shouldn't be displayed
+?>
+--EXPECTF--
+Fatal error: Cannot make static method pass::show() non static in class fail in %s on line %d \ No newline at end of file