Announce SDCC 4.5.0 RC2.
[sdcc.git] / sdcc / support / valdiag / tests / universal2.c
blobe690973af18cb1214fa299fb3aa6304daff645cd
1 /* universal2.c
3 Test a diagnostic for universal character names, that cannot reside in the same file as other tests:
4 A \u003a outside of string literal always results in a diagnostoc, even inside #if 0.
6 */
8 #ifdef TEST1
9 // ':' via UCN in identifier
10 const char *string\u003a = u8":"; /* ERROR */
11 #endif