summaryrefslogtreecommitdiff
path: root/Zend/tests/bug30791.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug30791.phpt')
-rwxr-xr-xZend/tests/bug30791.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/Zend/tests/bug30791.phpt b/Zend/tests/bug30791.phpt
deleted file mode 100755
index f56bcfb6e7..0000000000
--- a/Zend/tests/bug30791.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #30791 magic methods (__sleep/__wakeup/__toString) call __call if object is overloaded
---FILE--
-<?php
-class a {
- public $a = 4;
- function __call($a,$b) {
- return "unknown method";
- }
-}
-$b = new a;
-echo $b,"\n";
-$c = unserialize(serialize($b));
-echo $c,"\n";
-var_dump($c);
-?>
---EXPECT--
-Object id #1
-Object id #2
-object(a)#2 (1) {
- ["a"]=>
- int(4)
-}