summaryrefslogtreecommitdiff
path: root/Zend/tests/bug26281.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug26281.phpt')
-rwxr-xr-xZend/tests/bug26281.phpt13
1 files changed, 0 insertions, 13 deletions
diff --git a/Zend/tests/bug26281.phpt b/Zend/tests/bug26281.phpt
deleted file mode 100755
index a3a735a552..0000000000
--- a/Zend/tests/bug26281.phpt
+++ /dev/null
@@ -1,13 +0,0 @@
---TEST--
-Bug #26281 (switch() crash when condition is a string offset)
---FILE--
-<?php
- $x = 'abc';
- switch ($x{0}) {
- case 'a':
- echo "no crash\n";
- break;
- }
-?>
---EXPECT--
-no crash