mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-23 19:33:20 +00:00
1 line
180 B
Plaintext
1 line
180 B
Plaintext
|
/* Deviance Test 7.6.1.3: Check for illegal % in a constant expression */
#include <stdio.h>
void main(void)
{
int i;
i = 4%(-1);
printf("Failed Deviance Test 7.6.1.3\n");
}
|