Alessandro Bonazzi e075990ed3 Patch level : 12.0 no-patch
Files correlati     :
Commento            :

Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
2020-11-28 16:24:08 +01:00

14 lines
243 B
C

/* e_35_2.c: Out of range of character constant. */
/* In ASCII character set. */
/* 35.2: */
#if 'abcdefghi' == '\x61\x62\x63\x64\x65\x66\x67\x68\x69'
/* Perhaps out of range. */
#endif
main( void)
{
return 0;
}