PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / extern-C-2.C
blob562786c049cd957915e764bd8bd5e932f7fed5fc
1 // PR c++/39742
3 void f( int, ...);
5 struct S
7 };
9 void
10 g()
12   void f( int, ...);
14   S t;
16   f(1, t);
19 void
20 f( int i, ...)