1 // PR c++/56403
2 // { dg-do compile }
3 
4 #include <stdarg.h>
5 
6 struct S { va_list err_args; };
7 
8 void *
foo()9 foo ()
10 {
11   return new S ();
12 }
13