msg_088.c revision 1.4
11.4Srillig/*	$NetBSD: msg_088.c,v 1.4 2022/06/15 20:18:31 rillig Exp $	*/
21.1Srillig# 3 "msg_088.c"
31.1Srillig
41.1Srillig// Test for message: typedef hides external declaration: %s [88]
51.1Srillig
61.2Srillig/* lint1-flags: -g -h -S -w */
71.2Srillig
81.2Srilligextern int identifier;
91.2Srillig
101.2Srilligvoid
111.2Srilligfunc(void)
121.2Srillig{
131.4Srillig	/* expect+1: warning: typedef hides external declaration: identifier [88] */
141.4Srillig	typedef double identifier;
151.2Srillig}
16