int wide_hex4bit = L'\xf';
int wide_hex7bit = L'\x7f';
int wide_hex8bit = L'\xff';
int wide_hex9bit = L'\x100';
int wide_hex16bit = L'\xffff';
int wide_hex20bit = L'\xfffff';
int wide_hex31bit = L'\x7fffffff';
int wide_hex32bit = L'\xffffffff';
/* expect+1: warning: overflow in hex escape [75] */
int wide_hex33bit = L'\x1000000ff';
/* expect+1: warning: overflow in hex escape [75] */
int wide_hex36bit = L'\xfffffffff';
int wide_string_hex4bit[] = L"\xf";
int wide_string_hex7bit[] = L"\x7f";
int wide_string_hex8bit[] = L"\xff";
int wide_string_hex9bit[] = L"\x100";
int wide_string_hex16bit[] = L"\xffff";
int wide_string_hex20bit[] = L"\xfffff";
int wide_string_hex31bit[] = L"\x7fffffff";
int wide_string_hex32bit[] = L"\xffffffff";
/* expect+1: warning: overflow in hex escape [75] */
int wide_string_hex33bit[] = L"\x1000000ff";
/* expect+1: warning: overflow in hex escape [75] */
int wide_string_hex36bit[] = L"\xfffffffff";