1/* This wrongly caused duplicate definitions of x in the assembler
2   output.  */
3/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
4
5static int x = 1;
6void f (void) { extern int x; }
7