summaryrefslogtreecommitdiff
path: root/Zend/tests/bug31525.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug31525.phpt')
-rwxr-xr-xZend/tests/bug31525.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/Zend/tests/bug31525.phpt b/Zend/tests/bug31525.phpt
deleted file mode 100755
index b1a01b61ef..0000000000
--- a/Zend/tests/bug31525.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-Bug #31525 (object reference being dropped. $this getting lost)
---INI--
-error_reporting=4095
---FILE--
-<?php
-class Foo {
- function getThis() {
- return $this;
- }
- function destroyThis() {
- $baz =& $this->getThis();
- }
-}
-$bar = new Foo();
-$bar->destroyThis();
-var_dump($bar);
-?>
---EXPECTF--
-Strict Standards: Only variables should be assigned by reference in %sbug31525.php on line 7
-object(Foo)#1 (0) {
-}