ORCA-C/Tests/Deviance/D4.6.0.2.CC

15 lines
377 B
C++

/* Deviance Test 4.6.0.2: Ensure attempt to initialize variables of type */
/* void and function is detected */
int printf(const char *, ...);
int main (void)
{
void v3 = 99.0;
register void v4 = 'a';
static char F3 (void) = 'm';
extended F4 (int x, int y) = 4.0E300;
printf ("Failed Deviance Test 4.6.0.2\n");
}