blob: 85b6f7460e347a9ff96719303d54de2c2565ea80 [file] [log] [blame]
// PR c++/23840
#include <stdarg.h>
struct S
{
int f(int);
};
void f(int i, ...)
{
va_list ap;
va_start (ap, i);
va_arg (ap, S).f(0);
}