Home | History | Annotate | Line # | Download | only in lint1
msg_095.c revision 1.3
      1 /*	$NetBSD: msg_095.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
      2 # 3 "msg_095.c"
      3 
      4 // Test for message: declaration hides earlier one: %s [95]
      5 
      6 /* lint1-flags: -ghSw */
      7 
      8 int identifier;
      9 
     10 int
     11 example(int identifier)
     12 {
     13 
     14 	{
     15 		int identifier = 3;	/* expect: 95 */
     16 	}
     17 
     18 	return identifier;
     19 }
     20