Home | History | Annotate | Line # | Download | only in lint1
msg_057.c revision 1.2
      1 /*	$NetBSD: msg_057.c,v 1.2 2021/01/08 21:25:03 rillig Exp $	*/
      2 # 3 "msg_057.c"
      3 
      4 // Test for message: enumeration constant hides parameter: %s [57]
      5 
      6 long
      7 rgb(int red, int green, int blue)
      8 {
      9 	enum color {
     10 		red, green, blue
     11 	};
     12 
     13 	return red + green + blue;
     14 }
     15