mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-22 07:30:54 +00:00
15 lines
286 B
C++
15 lines
286 B
C++
/* Deviance Test 2.7.3.1: Ensure unterminated character constants are */
|
|
/* flagged as errors */
|
|
main ()
|
|
{
|
|
char a;
|
|
int j;
|
|
|
|
a = 'a;
|
|
j = 5 * 76;
|
|
a = '\t;
|
|
a = '\006;
|
|
|
|
printf ("Failed Deviance Test 2.7.3.1\n");
|
|
}
|