mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
13 lines
439 B
Plaintext
13 lines
439 B
Plaintext
char bar = '\xaf';
|
|
char bar = '\x0F';
|
|
|
|
char bar = '\xgh'; // #error: Expected a two character
|
|
|
|
char baz = '\ueeof'; // #error: Expected a four char
|
|
char eofk = '\u233'; // #error: Expected a four char
|
|
|
|
char zab = '\Uaokdokok'; // #error: Expected an eight
|
|
char zab = '\Uaokdooekfoekfekfkeofkekok'; // #error: Expected an eight
|
|
char eofk = '\UaUfko'; // #error: Expected an eight
|
|
|
|
char foo = ' // #error: Character literal did not terminate |