summaryrefslogtreecommitdiff
path: root/Zend/tests/bug30346.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug30346.phpt')
-rwxr-xr-xZend/tests/bug30346.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/Zend/tests/bug30346.phpt b/Zend/tests/bug30346.phpt
deleted file mode 100755
index a158d0c40b..0000000000
--- a/Zend/tests/bug30346.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Bug 30346 (arrayAcces & using $this)
---FILE--
-<?php
-
-class Test implements ArrayAccess
-{
- public function __construct() { }
- public function offsetExists( $offset ) { return false; }
- public function offsetGet( $offset ) { return $offset; }
- public function offsetSet( $offset, $data ) { }
- public function offsetUnset( $offset ) { }
-}
-
-$post = new Test;
-$id = 'page';
-echo $post[$id.'_show'];
-echo "\n";
-
-?>
-===DONE===
---EXPECT--
-page_show
-===DONE=== \ No newline at end of file