1 // PR c++/65811
2 
3 struct foo { int i; };
4 
5 static void fn1 ();
6 inline void
fn1()7 fn1 ()
8 {
9   static struct foo a[1];
10 }
11