1 /* $NetBSD: msg_238.c,v 1.4 2021/03/29 22:24:34 rillig Exp $ */ 2 # 3 "msg_238.c" 3 4 /* Test for message: initialization of union is illegal in traditional C [238] */ 5 6 /* lint1-flags: -tw */ 7 8 struct { 9 int x; 10 } s = { 11 3 12 }; 13 14 union { 15 int x; 16 } u = { /* expect: 238 */ 17 3 18 }; 19