1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/standard/tests/math/atan2_error.phpt

16 lines
291 B
PHP

--TEST--
Test atan2() - wrong params atan2()
--FILE--
<?php
atan2();
atan2(36);
atan2(36,25,0);
?>
--EXPECTF--
Warning: Wrong parameter count for atan2() in %s on line 2
Warning: Wrong parameter count for atan2() in %s on line 3
Warning: Wrong parameter count for atan2() in %s on line 4