mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-17 05:06:10 +00:00
10 lines
221 B
C++
10 lines
221 B
C++
/* Conformance test 2.2.0.4: Comment characters in strings */
|
|
|
|
main ()
|
|
{
|
|
if (strlen("/*") == 2)
|
|
printf ("Passed Conformance Test 2.2.0.4\n");
|
|
else
|
|
printf ("Failed Conformance Test 2.2.0.4\n");
|
|
}
|