1
0
mirror of https://github.com/byteworksinc/ORCA-C.git synced 2025-01-09 04:29:57 +00:00
ORCA-C/Tests/Deviance/D7.6.1.2.CC

14 lines
177 B
Plaintext
Raw Normal View History

/* 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");
}