ORCA-C/Tests/Deviance/D4.6.0.1.CC
2017-10-21 18:40:19 -05:00

14 lines
310 B
C++

/* Deviance Test 4.6.0.1: Ensure attempt to initialize variables of type */
/* void and function is detected */
static void v1 = 5;
void v2 = 88;
static int F1 (char ch) = 5;
float F2 (double d3) = 5.6;
main ()
{
printf ("Failed Deviance Test 4.6.0.1\n");
}