mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-04 11:05:50 +00:00
1 line
232 B
C++
Executable File
1 line
232 B
C++
Executable File
/* Deviance Test 4.4.1.1: Ensure declarations contain either a type specifier */
|
|
/* or storage class specifier or both */
|
|
|
|
main ()
|
|
{
|
|
j;
|
|
|
|
printf ("Failed Deviance Test 4.4.1.1\n");
|
|
}
|