1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00

Test for bug #24054

This commit is contained in:
foobar
2003-06-06 11:09:55 +00:00
parent 5a7257f6e2
commit c8c45d14da
+17
View File
@@ -0,0 +1,17 @@
--TEST--
Bug #24054 (Assignment operator *= broken)
--FILE--
<?php
$i = 10000000;
$i *= 1001;
$j = 10000000;
$j = $j * 1001;
var_dump($i,$j);
?>
--EXPECT--
float(1.001E+10)
float(1.001E+10)