summaryrefslogtreecommitdiff
path: root/Zend/tests/bug34358.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug34358.phpt')
-rwxr-xr-xZend/tests/bug34358.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/Zend/tests/bug34358.phpt b/Zend/tests/bug34358.phpt
deleted file mode 100755
index b9c6565f51..0000000000
--- a/Zend/tests/bug34358.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-Bug #34358 (Fatal error: Cannot re-assign $this(again))
---FILE--
-<?php
-class foo {
- function bar() {
- $ref = &$this;
- }
-}
-$x = new foo();
-$x->bar();
-echo "ok\n";
-?>
---EXPECT--
-ok