mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 18:31:43 +00:00
14 lines
180 B
C++
14 lines
180 B
C++
/* 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");
|
|
}
|