mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
14 lines
312 B
C++
14 lines
312 B
C++
/* Deviance Test 2.2.0.2: Ensure comments without terminators are flagged */
|
|
/* as errors */
|
|
main ()
|
|
{
|
|
/* don't terminate this one
|
|
|
|
int a;
|
|
|
|
*/ and then try to comment here */
|
|
|
|
a = 3;
|
|
printf ("Failed Deviance Test 2.2.0.2\n");
|
|
}
|