11.5Srillig/* $NetBSD: msg_179.c,v 1.5 2023/03/28 14:44:35 rillig Exp $ */ 21.1Srillig# 3 "msg_179.c" 31.1Srillig 41.1Srillig// Test for message: cannot initialize struct/union with no named member [179] 51.1Srillig 61.5Srillig/* lint1-extra-flags: -X 351 */ 71.5Srillig 81.3Srilligstruct { 91.3Srillig unsigned int :0; 101.3Srillig} no_named_member = { 111.4Srillig /* expect-1: error: cannot initialize struct/union with no named member [179] */ 121.3Srillig /* no named member, therefore no initializer expression */ 131.3Srillig}; 141.3Srillig 151.3Srilligstruct { 161.3Srillig /* no members */ 171.3Srillig} empty = { 181.4Srillig /* expect-1: error: cannot initialize struct/union with no named member [179] */ 191.3Srillig /* no initializer expressions */ 201.3Srillig}; 211.3Srillig 221.3Srilligstruct { 231.3Srillig unsigned int: 0; 241.3Srillig} no_named_member_init = { 251.4Srillig /* expect-1: error: cannot initialize struct/union with no named member [179] */ 261.3Srillig 3, 271.3Srillig}; 28