summaryrefslogtreecommitdiff
path: root/tests/lang/bug24054.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug24054.phpt')
-rw-r--r--tests/lang/bug24054.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lang/bug24054.phpt b/tests/lang/bug24054.phpt
index 4ee5d631e6..267057f165 100644
--- a/tests/lang/bug24054.phpt
+++ b/tests/lang/bug24054.phpt
@@ -6,12 +6,12 @@ Bug #24054 (Assignment operator *= broken)
define('LONG_MAX', is_int(5000000000)? 9223372036854775807 : 0x7FFFFFFF);
define('LONG_MIN', -LONG_MAX - 1);
printf("%d,%d,%d,%d\n",is_int(LONG_MIN ),is_int(LONG_MAX ),
- is_int(LONG_MIN-1),is_int(LONG_MAX+1));
+ is_int(LONG_MIN-1),is_int(LONG_MAX+1));
- $i = LONG_MAX;
+ $i = LONG_MAX;
- $j = $i * 1001;
- $i *= 1001;
+ $j = $i * 1001;
+ $i *= 1001;
$tests = <<<TESTS
$i === $j