11.7Srillig/* $NetBSD: msg_088.c,v 1.7 2024/10/14 18:43:24 rillig Exp $ */ 21.1Srillig# 3 "msg_088.c" 31.1Srillig 41.7Srillig// Test for message: typedef '%s' hides external declaration with type '%s' [88] 51.1Srillig 61.6Srillig/* lint1-flags: -g -h -S -w -X 351 */ 71.2Srillig 81.2Srilligextern int identifier; 91.2Srillig 101.2Srilligvoid 111.2Srilligfunc(void) 121.2Srillig{ 131.7Srillig /* expect+1: warning: typedef 'identifier' hides external declaration with type 'int' [88] */ 141.4Srillig typedef double identifier; 151.2Srillig} 16