xref: /PHP-7.3/ext/standard/tests/math/exp_error.phpt (revision b746e698)
1--TEST--
2Test exp() - wrong params for exp()
3--INI--
4precision=14
5--FILE--
6<?php
7exp();
8exp(23,true);
9?>
10--EXPECTF--
11Warning: exp() expects exactly 1 parameter, 0 given in %s on line %d
12
13Warning: exp() expects exactly 1 parameter, 2 given in %s on line %d
14