1 // PR c++/84836
2 // ICE popping local binding
3 
foo(void)4 void foo (void)
5 {
6   struct A;
7   void A (int);
8   void A (long);
9 }
10