diff options
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/standard/tests/math/bug30069.phpt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/standard/tests/math/bug30069.phpt b/ext/standard/tests/math/bug30069.phpt index 0cdcfc4ab0..5e3246c51c 100755 --- a/ext/standard/tests/math/bug30069.phpt +++ b/ext/standard/tests/math/bug30069.phpt @@ -4,6 +4,9 @@ Bug #30069 (floats as strings used in calculations do not work) <?php echo ".1" * "2"; echo "\n"; +echo "-.1" * "2"; +echo "\n"; ?> --EXPECT-- 0.2 +-0.2 |