[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / pr77427.C
blob544946d70b6f40280345c151d91e60fcfa417ac5
1 // { dg-do compile }
3 void bar (__builtin_va_list &);
5 struct c
7   operator const __builtin_va_list &();
8   operator __builtin_va_list &();
9 };
11 void
12 foo (void)
14   struct c c1;
16   bar (c1);