Home | History | Annotate | Line # | Download | only in lint1
msg_127.c revision 1.2
      1 /*	$NetBSD: msg_127.c,v 1.2 2021/01/09 14:37:16 rillig Exp $	*/
      2 # 3 "msg_127.c"
      3 
      4 /* Test for message: '&' before array or function: ignored [127] */
      5 
      6 /* lint1-extra-flags: -t */
      7 
      8 void
      9 example(void)
     10 {
     11 	if (&example != (void *)0)
     12 		return;
     13 }
     14