1 // commit 39dfd58417ef642307d90306e1c7e50aaec5a35c 2015-03-20
2 // backslash followed by high byte should be parsed as a normal sequence
13 setlocale(LC_CTYPE
, "C.UTF-8");
15 // illegal sequence (not U+00FC)
16 n
= regcomp(&r
, "\\\xfc", 0);
17 if (n
!= REG_BADPAT
) {
18 regerror(n
, &r
, buf
, sizeof buf
);
19 t_error("regcomp(\\\\\\xfc) returned %d (%s) wanted REG_BADPAT\n", n
, buf
);