xref: /PHP-8.4/ext/bcmath/tests/gh17275.phpt (revision ef036090)
1--TEST--
2GH-17275 Incorrect result of bcdiv function
3--EXTENSIONS--
4bcmath
5--FILE--
6<?php
7var_dump(
8    bcdiv('0.03772321', '9650.0', 8),
9    bcdiv('0.03772321', '9650.0', 9),
10);
11?>
12--EXPECT--
13string(10) "0.00000390"
14string(11) "0.000003909"
15