Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.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, ...)