xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_088.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_088.c,v 1.5 2022/06/20 21:13:36 rillig Exp $	*/
2 # 3 "msg_088.c"
3 
4 // Test for message: typedef '%s' hides external declaration [88]
5 
6 /* lint1-flags: -g -h -S -w */
7 
8 extern int identifier;
9 
10 void
11 func(void)
12 {
13 	/* expect+1: warning: typedef 'identifier' hides external declaration [88] */
14 	typedef double identifier;
15 }
16