msg_088.c revision 1.5
11.5Srillig/* $NetBSD: msg_088.c,v 1.5 2022/06/20 21:13:36 rillig Exp $ */ 21.1Srillig# 3 "msg_088.c" 31.1Srillig 41.5Srillig// Test for message: typedef '%s' hides external declaration [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.5Srillig /* expect+1: warning: typedef 'identifier' hides external declaration [88] */ 141.4Srillig typedef double identifier; 151.2Srillig} 16