mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
12 lines
242 B
C++
12 lines
242 B
C++
/* Deviance Test 2.7.3.3: Ensure character constants containing no */
|
|
/* characters are flagged as errors */
|
|
main ()
|
|
{
|
|
char a, b;
|
|
|
|
a = '';
|
|
b = '';
|
|
|
|
printf ("Failed Deviance Test 2.7.3.3\n");
|
|
}
|