/* $NetBSD: init.c,v 1.4 2021/12/17 10:22:30 rillig Exp $ */ # 3 "init.c" /* * Tests for initialization. * * C99 6.7.8 */ /* * C99 does not allow empty initializer braces syntactically. * Lint allows this syntactically, it just complains if the resulting * object is empty. */ /* expect+1: error: empty array declaration: empty_array_with_initializer [190] */ double empty_array_with_initializer[] = {}; double array_with_empty_initializer[3] = {}; /* * C99 does not allow empty initializer braces syntactically. */ struct { int member; } empty_struct_initializer = {}; typedef struct { const char *key; int n; } histogram_entry; /* * The C standards allow omitting braces around the structural levels. For * human readers, it is usually clearer to include them. * * Seen in external/ibm-public/postfix/dist/src/util/dict.c(624). * * TODO: Properly handle this situation; as of init.c 1.212 from 2021-12-17, * the below initialization sets in->in_err but shouldn't. */ const histogram_entry hgr[] = { "odd", 5, "even", 5, }; /* Initialization with fewer braces than usual, must still be accepted. */ struct { int x, y; } points[] = { 0, 0, 3, 0, 0, 4, 3, 4 }; /* expect-1: error: empty array declaration: points [190] */