blob: 562786c049cd957915e764bd8bd5e932f7fed5fc [file] [log] [blame]
// PR c++/39742
void f( int, ...);
struct S
{
};
void
g()
{
void f( int, ...);
S t;
f(1, t);
}
void
f( int i, ...)
{
}