summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug77191.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/opcache/tests/bug77191.phpt')
-rw-r--r--ext/opcache/tests/bug77191.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/opcache/tests/bug77191.phpt b/ext/opcache/tests/bug77191.phpt
index ca04b4aadd..ffbc90700c 100644
--- a/ext/opcache/tests/bug77191.phpt
+++ b/ext/opcache/tests/bug77191.phpt
@@ -3,13 +3,13 @@ Bug #77191: Assertion failure in dce_live_ranges() when silencing is used
--FILE--
<?php
function test($x) {
- switch (@$x['y']) {
- case 1: return 'a';
- case 2: return 'b';
- case 3: return 'c';
- case 4: return 'd';
- }
- return 'e';
+ switch (@$x['y']) {
+ case 1: return 'a';
+ case 2: return 'b';
+ case 3: return 'c';
+ case 4: return 'd';
+ }
+ return 'e';
}
var_dump(test([]));
?>