xref: /PHP-8.0/ext/bcmath/tests/bug54598.phpt (revision a555cc0b)
1--TEST--
2Bug #54598 (bcpowmod() may return 1 if modulus is 1)
3--SKIPIF--
4<?php
5if (!extension_loaded('bcmath')) die('skip bcmath extension is not available');
6?>
7--FILE--
8<?php
9var_dump(bcpowmod(5, 0, 1));
10var_dump(bcpowmod(5, 0, 1, 3));
11?>
12--EXPECT--
13string(1) "0"
14string(5) "0.000"
15