mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
14 lines
177 B
C++
14 lines
177 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%0;
|
|
|
|
printf("Failed Deviance Test 7.6.1.3\n");
|
|
}
|