mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-11 04:29:48 +00:00
1 line
191 B
C++
Executable File
1 line
191 B
C++
Executable File
/* Deviance Test 7.6.1.4: Check for illegal float / in a constant expression */
|
|
|
|
#include <stdio.h>
|
|
|
|
void main(void)
|
|
|
|
{
|
|
float f;
|
|
|
|
f = 4.0 / 0.0;
|
|
|
|
printf("Failed Deviance Test 7.6.1.4\n");
|
|
}
|