1 /*        $NetBSD: msg_038.c,v 1.5 2025/04/12 15:49:50 rillig Exp $   */
2 # 3 "msg_038.c"
3 
4 // Test for message: function invalid in structure or union [38]
5 
6 /* lint1-extra-flags: -X 351 */
7 
8 typedef void (function)(void);
9 
10 struct {
11           /* expect+1: error: function invalid in structure or union [38] */
12           function fn;
13 } s;
14