summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bcpow_error2.phpt
blob: 733d628b41ae3feceaa0ff884035a9c134ae1b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
bcpow() does not support exponents >= 2**63
--EXTENSIONS--
bcmath
--FILE--
<?php
try {
    var_dump(bcpow('0', '9223372036854775808', 2));
} catch (\ValueError $e) {
    echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
bcpow(): Argument #2 ($exponent) is too large