msg_088.c revision 1.2
1/*	$NetBSD: msg_088.c,v 1.2 2021/01/03 15:35:00 rillig Exp $	*/
2# 3 "msg_088.c"
3
4// Test for message: typedef hides external declaration: %s [88]
5
6/* lint1-flags: -g -h -S -w */
7
8extern int identifier;
9
10void
11func(void)
12{
13	typedef double identifier;
14}
15