Alessandro Bonazzi
e075990ed3
Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
12 lines
414 B
Raku
12 lines
414 B
Raku
/* u_1_7_utf8.t: Invalid multi-byte character sequence (in string literal,
|
||
character constant, header-name or comment). */
|
||
|
||
#define str( a) # a
|
||
#pragma __setlocale( "utf8") /* For MCPP */
|
||
|
||
str( "字"); /* 0xe5ad97 : legal */
|
||
str( "<EFBFBD><EFBFBD>"); /* 0xc0af : overlong */
|
||
str( "<EFBFBD><EFBFBD><EFBFBD>"); /* 0xe09fbf : overlong */
|
||
str( "<EFBFBD><EFBFBD><EFBFBD>"); /* 0xeda080 : UTF-16 surrogate */
|
||
|