summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c2x-utf8char-3.c
blob: 7c489831998924d35534befa87bc4cb356eedbb9 (plain)
1
2
3
4
5
6
7
8
/* Test C2x UTF-8 characters.  Test errors for invalid code.  */
/* { dg-do compile } */
/* { dg-options "-std=c2x -pedantic-errors" } */

unsigned char a = u8''; /* { dg-error "empty character constant" } */
unsigned char b = u8'ab'; /* { dg-error "character constant too long for its type" } */
unsigned char c = u8'\u00ff'; /* { dg-error "character constant too long for its type" } */
unsigned char d = u8'\x100'; /* { dg-error "hex escape sequence out of range" } */