Home | History | Annotate | Line # | Download | only in lint1
msg_127.c revision 1.5
      1 /*	$NetBSD: msg_127.c,v 1.5 2025/02/24 19:56:27 rillig Exp $	*/
      2 # 3 "msg_127.c"
      3 
      4 /* Test for message: '&' before array or function: ignored [127] */
      5 /*
      6  * This message is no longer used, as it contradicts all C standards and is
      7  * not mentioned in K&R 1978 either.
      8  */
      9 
     10 /* lint1-extra-flags: -t */
     11 
     12 void
     13 example()
     14 {
     15 	if (&example != (void *)0)
     16 		return;
     17 }
     18