1 /* $NetBSD: msg_101.c,v 1.4 2021/03/30 15:18:19 rillig Exp $ */ 2 # 3 "msg_101.c" 3 4 // Test for message: type '%s' does not have member '%s' [101] 5 6 struct point { 7 int x, y; 8 }; 9 10 int 11 get_z(const struct point *p) 12 { 13 return p.z; /* expect: 101 */ 14 } 15