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

View File

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