summaryrefslogtreecommitdiff
path: root/Zend/tests/bug34310.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug34310.phpt')
-rw-r--r--Zend/tests/bug34310.phpt34
1 files changed, 0 insertions, 34 deletions
diff --git a/Zend/tests/bug34310.phpt b/Zend/tests/bug34310.phpt
deleted file mode 100644
index 1d2bb03ad3..0000000000
--- a/Zend/tests/bug34310.phpt
+++ /dev/null
@@ -1,34 +0,0 @@
---TEST--
-Bug #34310 (foreach($arr as $c->d => $x) crashes)
---FILE--
-<?php
-
-class C
-{
- public $d;
-}
-
-$c = new C();
-
-$arr = array (1 => 'a', 2 => 'b', 3 => 'c');
-
-// Works fine:
-foreach($arr as $x => $c->d)
-{
- echo "{$x} => {$c->d}\n";
-}
-
-// Crashes:
-foreach($arr as $c->d => $x)
-{
- echo "{$c->d} => {$x}\n";
-}
-
-?>
---EXPECT--
-1 => a
-2 => b
-3 => c
-1 => a
-2 => b
-3 => c