1 /* $NetBSD: msg_034.c,v 1.3 2021/01/31 11:12:07 rillig Exp $ */ 2 # 3 "msg_034.c" 3 4 // Test for message: nonportable bit-field type [34] 5 6 /* lint1-flags: -S -g -p -w */ 7 8 struct example { 9 int nonportable: 1; /* expect: 34 */ 10 unsigned int portable: 1; 11 }; 12