lex_utf8.c revision 1.2
11.2Srillig/* $NetBSD: lex_utf8.c,v 1.2 2024/02/02 23:36:01 rillig Exp $ */ 21.1Srillig# 3 "lex_utf8.c" 31.1Srillig 41.1Srillig/* 51.1Srillig * Test lexing of multibyte characters and strings in an UTF-8 locale. 61.2Srillig * 71.2Srillig * See also: 81.2Srillig * lex_wide_string.c (runs in the C locale) 91.1Srillig */ 101.1Srillig 111.2Srillig/* expect+1: error: negative array dimension (-3) [20] */ 121.1Srilligtypedef int mblen[-(int)(sizeof(L"Ä") / sizeof(L""))]; 13