Home | History | Annotate | Line # | Download | only in lint1
      1 /*	$NetBSD: msg_184.c,v 1.7 2025/04/12 15:49:50 rillig Exp $	*/
      2 # 3 "msg_184.c"
      3 
      4 // Test for message: invalid combination of '%s' and '%s' [184]
      5 
      6 /* lint1-extra-flags: -X 351 */
      7 
      8 int *
      9 example(char *cp)
     10 {
     11 	/* expect+1: warning: invalid combination of 'pointer to int' and 'pointer to char' [184] */
     12 	return cp;
     13 }
     14