mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-22 07:30:54 +00:00
14 lines
177 B
C++
14 lines
177 B
C++
/* Deviance Test 7.6.1.2: 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.2\n");
|
|
}
|