diff options
Diffstat (limited to 'tests/lang/017.phpt')
-rw-r--r-- | tests/lang/017.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lang/017.phpt b/tests/lang/017.phpt index fb90964820..264b3906fe 100644 --- a/tests/lang/017.phpt +++ b/tests/lang/017.phpt @@ -4,14 +4,14 @@ Testing user-defined function falling out of an If into another <?php $a = 1; function Test ($a) { - if ($a<3) { - return(3); - } + if ($a<3) { + return(3); + } } if ($a < Test($a)) { - echo "$a\n"; - $a++; + echo "$a\n"; + $a++; } ?> --EXPECT-- |