1--TEST--
2bcpow() does not support non-integral exponents
3--EXTENSIONS--
4bcmath
5--FILE--
6<?php
7try {
8 var_dump(bcpow('1', '1.1', 2));
9} catch (\ValueError $e) {
10 echo $e->getMessage() . \PHP_EOL;
11}
12?>
13--EXPECT--
14bcpow(): Argument #2 ($exponent) cannot have a fractional part
15