summaryrefslogtreecommitdiff
path: root/Zend/tests/bug33710.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug33710.phpt')
-rwxr-xr-xZend/tests/bug33710.phpt32
1 files changed, 0 insertions, 32 deletions
diff --git a/Zend/tests/bug33710.phpt b/Zend/tests/bug33710.phpt
deleted file mode 100755
index 330bb584a4..0000000000
--- a/Zend/tests/bug33710.phpt
+++ /dev/null
@@ -1,32 +0,0 @@
---TEST--
-Bug #33710 (ArrayAccess objects doesn't initialize $this)
---FILE--
-<?php
-
-class Foo implements ArrayAccess
-{
- function offsetExists($offset) {/*...*/}
- function offsetGet($offset) {/*...*/}
- function offsetSet($offset, $value) {/*...*/}
- function offsetUnset($offset) {/*...*/}
-
- function fail()
- {
- $this['blah'];
- }
-
- function succeed()
- {
- $this;
- $this['blah'];
- }
-}
-
-$bar = new Foo();
-$bar->succeed();
-$bar->fail();
-
-?>
-===DONE===
---EXPECT--
-===DONE===