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

26 lines
477 B
Perl
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* n_ucn1.t: Universal-character-name */
/* UCN in character constant */
#if '\u5B57'
UCN-16bits is implemented.
#endif
#if '\U00006F22'
UCN-32bits is implemented.
#endif
/* UCN in string literal */
"abc\u6F22\u5B57xyz"; /* i.e. "abc´Á»úxyx"; */
/* UCN in identifier */
#define macro\u5B57 9
#define macro\U00006F22 99
macro\u5B57 /* 9 */
macro\U00006F22 /* 99 */
macro\U00006f22 /* 99 */