OSDN Git Service

PR c++/54325
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / stdarg2.C
1 // PR c++/11929
2 // Bug: We were complaining about the call to va_start because o is of
3 // non-POD type.
4
5 struct s {
6   s(int);
7 };
8
9 void test(s o, ...) {
10   __builtin_va_list varg;
11   __builtin_va_start(varg, o);
12 }