1 // PR 97877, duplicate decls smashed decl_lang_specific
2 
f()3 void f ()
4 {
5   extern int a;
6   extern int a;
7   a = 2;
8 }
9