Home | History | Annotate | Line # | Download | only in lint1
msg_232.c revision 1.3
      1 /*	$NetBSD: msg_232.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
      2 # 3 "msg_232.c"
      3 
      4 // Test for message: label %s unused in function %s [232]
      5 
      6 void
      7 example(void)
      8 {
      9 	goto used_label;
     10 unused_label:			/* expect: 232 */
     11 	return;
     12 used_label:
     13 	return;
     14 }
     15