summaryrefslogtreecommitdiff
path: root/Zend/tests/jump11.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/jump11.phpt')
-rw-r--r--Zend/tests/jump11.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/jump11.phpt b/Zend/tests/jump11.phpt
index bd1107c4ab..4c4c4f30a2 100644
--- a/Zend/tests/jump11.phpt
+++ b/Zend/tests/jump11.phpt
@@ -4,16 +4,16 @@ jump 08: goto inside switch in constructor
<?php
class foobar {
public function __construct() {
- switch (1) {
+ switch (1) {
default:
goto b;
a:
print "ok!\n";
- break;
+ break;
b:
print "ok!\n";
goto a;
- }
+ }
print "ok!\n";
}
}