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