Update test to reflect that operands of % may be negative.

This commit is contained in:
Stephen Heumann 2018-09-14 20:18:33 -05:00
parent 80b96c1147
commit ef099f4f83
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ void main(void)
{
int i;
i = 4%(-1);
i = 4%0;
printf("Failed Deviance Test 7.6.1.3\n");
}