xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_184.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_184.c,v 1.5 2022/06/17 18:54:53 rillig Exp $	*/
2 # 3 "msg_184.c"
3 
4 // Test for message: illegal combination of '%s' and '%s' [184]
5 
6 int *
7 example(char *cp)
8 {
9 	/* expect+1: warning: illegal combination of 'pointer to int' and 'pointer to char' [184] */
10 	return cp;
11 }
12