summaryrefslogtreecommitdiff
path: root/Zend/tests/bug34678.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug34678.phpt')
-rwxr-xr-xZend/tests/bug34678.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/Zend/tests/bug34678.phpt b/Zend/tests/bug34678.phpt
deleted file mode 100755
index 2a13201f26..0000000000
--- a/Zend/tests/bug34678.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
---TEST--
-Bug #34678 (__call(), is_callable() and static methods)
---FILE--
-<?php
-class A {
- public function __call($m, $a) {
- echo "__call\n";
- }
-}
-
-class B extends A {
- public static function foo() {
- echo "foo\n";
- }
-}
-
-if (is_callable(array('B', 'foo'))) {
- call_user_func(array('B', 'foo'));
-}
-if (is_callable(array('A', 'foo'))) {
- call_user_func(array('A', 'foo'));
-}
-?>
---EXPECT--
-foo