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

20 lines
396 B
C

/* i_35_3.c: Multi-character wide character constant. */
#include "defs.h"
main( void)
{
fputs( "started\n", stderr);
/* In ASCII character set. */
/* 35.3: */
#if (L'ab' != L'\x61\x62') || (L'ab' == 'ab')
fputs( "Bad handling of multi-character wide character constant.\n",
stderr);
exit( 1);
#endif
fputs( "success\n", stderr);
return 0;
}