aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/expr/stdarg1.C
blob: 85b6f7460e347a9ff96719303d54de2c2565ea80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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);
}