msg_088.c revision 1.6
1/* $NetBSD: msg_088.c,v 1.6 2023/03/28 14:44:34 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 -X 351 */ 7 8extern int identifier; 9 10void 11func(void) 12{ 13 /* expect+1: warning: typedef 'identifier' hides external declaration [88] */ 14 typedef double identifier; 15} 16