summaryrefslogtreecommitdiff
path: root/Zend/tests/bug26281.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug26281.phpt')
-rw-r--r--Zend/tests/bug26281.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/bug26281.phpt b/Zend/tests/bug26281.phpt
index e1888a88dd..9844d31538 100644
--- a/Zend/tests/bug26281.phpt
+++ b/Zend/tests/bug26281.phpt
@@ -2,12 +2,12 @@
Bug #26281 (switch() crash when condition is a string offset)
--FILE--
<?php
- $x = 'abc';
- switch ($x[0]) {
- case 'a':
- echo "no crash\n";
- break;
- }
+ $x = 'abc';
+ switch ($x[0]) {
+ case 'a':
+ echo "no crash\n";
+ break;
+ }
?>
--EXPECT--
no crash