--TEST--
imagepolygon() with a negative num of points
--SKIPIF--
<?php 
    
if (!function_exists('imagepolygon')) die('skip imagepolygon() not available'); 
?>
--FILE--
<?php
$im 
imagecreate(100100);
$black imagecolorallocate($im000);
if (
imagepolygon($im, array(000000), -1$black)) echo "should be false";
imagedestroy($im);
?>
--EXPECTF--
Warning: imagepolygon(): You must give a positive number of points in %s on line %d